ERP132587¶
paper: PMID: 36544022 - The molecular evolution of spermatogenesis across mammals, 2022
date, curator: 2025-01-28, Sara Carsanaro
resources
- barcode file obtained from supplementary table 3
- sample info obtained from supplementary table 1
notes
- bonobo experiment from PMID 36544022 - each animal has its own experiment
annotation summary¶
run these when annotation is complete
In [ ]:
# cell type annotations
display_df(cell_df_complete)
| cell_type | notes_cell | cellTypeId_ | cellTypeName_ | cellTypeAnnotationStatus_ | cell_type_new | comment_cell | |
|---|---|---|---|---|---|---|---|
| 0 | should be NA/none | CL:0000255 | eukaryotic cell | other | none | ||
| 1 | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | Undifferentiated_Spermatogonia | ||
| 2 | Differentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | Differentiated_Spermatogonia | ||
| 3 | Early_Round_spermatids | early spermatid aka round spermatid definition: A spermatid in an early stage of maturation that has a round morphology and is transcriptionally active | CL:4030036 | early spermatid | missing child term | Early_Round_spermatids | |
| 4 | Elongated_spermatids | CL late spermatid definition: A spermatid in a late stage of maturation that has an elongated morphology and is transcriptionally inert when the acrosome is fully developed. | CL:4030037 | late spermatid | perfect match | Elongated_spermatids | |
| 5 | Late_Round_spermatids | early spermatid aka round spermatid definition: A spermatid in an early stage of maturation that has a round morphology and is transcriptionally active | CL:4030036 | early spermatid | missing child term | Late_Round_spermatids | |
| 6 | Leptotene_Spermatocytes | Leptotene, Zygotene, and Pachytene spermatocytes are all primary spermatocytes | CL:0000656 | primary spermatocyte | missing child term | Leptotene_Spermatocytes | |
| 7 | Pachytene_Spermatocytes | Leptotene, Zygotene, and Pachytene spermatocytes are all primary spermatocytes | CL:0000656 | primary spermatocyte | missing child term | Pachytene_Spermatocytes | |
| 8 | Zygotene_Spermatocytes | Leptotene, Zygotene, and Pachytene spermatocytes are all primary spermatocytes | CL:0000656 | primary spermatocyte | missing child term | Zygotene_Spermatocytes | |
| 9 | Other_somatic | CL:0000255 | eukaryotic cell | other | Other_somatic | ||
| 10 | Sertoli | somatic cells that nurture the germ cells during spermatogenesis | CL:0000216 | Sertoli cell | perfect match | Sertoli |
In [ ]:
# organ annotations
display_df(organ_df_complete)
| infoOrgan | notes_anat | anatId_ | anatName_ | anatAnnotationStatus_ | infoOrgan_new | comment_anat | |
|---|---|---|---|---|---|---|---|
| 0 | testis | UBERON:0000473 | testis | perfect match |
In [ ]:
# stage annotations
display_df(stage_df_complete)
| infoStage | notes_stage | stageId_ | stageName_ | stageAnnotationStatus_ | infoStage_new | comment_stage | |
|---|---|---|---|---|---|---|---|
| 0 | 15 years | PpanDv:0000025 | 15-year-old stage | perfect match | |||
| 1 | 36 years | PpanDv:0000040 | aged stage | missing child term |
set variables, import packages, define functions¶
In [ ]:
experiment_id = "ERP132587"
path_to_create_exp_script = "/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py"
path_to_barcodes_script = "/Users/scarsana/Desktop/git/scRNA-Seq/scripts/create_scRNASeq_barcode_v2.py"
experiment_type = "scRNA"
path_to_output_main = "/Users/scarsana/Desktop/git/expression-annotations/Notebooks/scRNA/"
path_to_output = "{}{}/".format(path_to_output_main, experiment_id)
library_path_from_script = "{}scRNASeqLibrary_{}.tsv".format(path_to_output, experiment_id)
experiment_path_from_script = "{}scRNASeqExperiment_{}.tsv".format(path_to_output, experiment_id)
barcode_path = "{}scRNASeq_barcode_{}.tsv".format(path_to_output, experiment_id)
barcode_to_add_path = "{}complete_scRNASeq_barcode_{}.tsv".format(path_to_output, experiment_id)
library_to_add_path = "{}complete_scRNASeqLibrary_{}.tsv".format(path_to_output, experiment_id)
experiment_to_add_path = "{}complete_RNASeqExperiment_{}.tsv".format(path_to_output, experiment_id)
script_file = "{}.ipynb".format(experiment_id)
commit_message_exp = '"adding annotated scRNA experiment {}"'.format(experiment_id)
commit_message_py = '"adding annotation files for {} to notebook folder"'.format(experiment_id)
## to add to git
path_to_git_annotations = "/Users/scarsana/Desktop/git/expression-annotations/scRNA_Seq/"
git_library_path = "{}scRNASeqLibrary_merged.tsv".format(path_to_git_annotations)
git_experiment_path = "{}scRNASeqExperiment.tsv".format(path_to_git_annotations)
git_barcode_path = "{}scRNASeq_barcode_{}.tsv".format(path_to_git_annotations, experiment_id)
## columns
library_cols = ['#libraryId', 'experimentId', 'platform', 'SRSId', 'anatId', 'anatName', 'cellTypeId', 'cellTypeName', 'stageId', 'stageName', 'url_GSM', 'infoOrgan', 'infoCellType_abInitio', 'infoCellType_inferred', 'clusterId', 'clusterName', 'infoStage', 'anatAnnotationStatus', 'cellTypeAnnotationStatus', 'stageAnnotationStatus', 'sex', 'strain', 'genotype', 'speciesId', 'RNAseqTags', 'protocol', 'protocolType', 'lib_name', 'sampleName', 'comment', 'condition', 'annotatorId', 'lastModificationDate']
barcode_cols = ['barcode', 'cluster', 'library', 'experiment', 'tissue', 'cell_type', 'anatId_a_posteriori', 'anatName_a_posteriori', 'anat_a_posteriori_annotationStatus', 'cellTypeId', 'cellTypeName', 'cellTypeAnnotationStatus', 'name_Library', 'comments']
## annotation sheet paths (maybe make these into their own folder)
annotation_files_path = "{}annotation_files/".format(path_to_output)
import os
if not os.path.exists(annotation_files_path):
os.makedirs(annotation_files_path)
info_anat_path = "{}info_anat.tsv".format(annotation_files_path)
info_anat_complete_path = "{}info_anat_complete.tsv".format(annotation_files_path)
info_stage_path = "{}info_dev_stage.tsv".format(annotation_files_path)
info_stage_complete_path = "{}info_dev_stage_complete.tsv".format(annotation_files_path)
info_celltype_path = "{}info_celltype.tsv".format(annotation_files_path)
info_celltype_complete_path = "{}info_celltype_complete.tsv".format(annotation_files_path)
## barcode file & matching library names - 10X only
path_to_barcode_file = "{}barcode_{}.csv".format(path_to_output, experiment_id)
lib_names_path = "{}matching_lib_names_{}.tsv".format(path_to_output, experiment_id)
In [ ]:
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
import pandas as pd
import numpy as np
from IPython.display import display, HTML
import csv
import scanpy as sc
# displays df with the scrollbar next to the DataFrame
def display_df(df):
pd.set_option("display.max_rows", None)
pd.set_option("display.max_columns", None)
display(HTML("<div style='height: 200px; overflow: auto; width: fit-content'>" +
df.style.to_html(index=False) + "</div>"))
# function that compares two columns in a dataframe and tells you which ones are not equal (case insensitive)
def compare_columns(df, col1, col2, return_col):
compare_return = df[col1].str.lower() != df[col2].str.lower()
df.loc[compare_return, return_col]
if not any(compare_return):
print("The two columns are equal (case insensitive)")
else:
print("The following rows are not equal: ")
print(df.loc[compare_return, [return_col, col1, col2]])
# fixes formatting of file to match libreoffice settings/historic file format
def update_format(path):
with open(path, 'r') as file:
filedata = file.read()
# Replace the target string
filedata = filedata.replace("\t\"\"", "\t")
# Write the file out again
with open(path, 'w') as file:
file.write(filedata)
# checks for duplicate values in a specific column and prints those values + the corresponding library id
def dup_check(df, column):
duplicateCheck = df.duplicated(subset=[column], keep=False)
duplicateCheck.sort_values(inplace=True)
if duplicateCheck.unique().any() == False:
print("no duplicate values in " + column)
elif duplicateCheck.unique().any() == True and column != '#libraryId':
dups = df[duplicateCheck].loc[:,['#libraryId', column]]
df_dups = pd.DataFrame(dups)
df_dups.sort_values(inplace=True, by=column)
print(df_dups)
elif duplicateCheck.unique().any() == True and column == '#libraryId':
print(df[duplicateCheck].loc[:,['#libraryId']])
# prints all unique values in a specific column
def unique_sorted(df, column):
unique = df[column].unique()
unique.sort()
print(unique)
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_81515/2872653486.py:3: DeprecationWarning:
Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),
(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)
but was not found to be installed on your system.
If this would cause problems for you,
please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466
import pandas as pd
script¶
In [ ]:
! python3 $path_to_create_exp_script $experiment_id $path_to_output $experiment_type
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:97: SyntaxWarning: invalid escape sequence '\('
all_protoc = [w.replace('(', '\(') for w in all_protoc]
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:98: SyntaxWarning: invalid escape sequence '\)'
all_protoc = [w.replace(')', '\)') for w in all_protoc]
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:11: DeprecationWarning:
Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),
(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)
but was not found to be installed on your system.
If this would cause problems for you,
please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466
import pandas as pd
Be patient, it may take a few minutes.
E-MTAB-11067
0it [00:00, ?it/s]
0 samples dont have attributes, try to find them somewhere else
0it [00:00, ?it/s]
0 samples dont have attributes
library annnotations¶
In [ ]:
library = pd.read_csv(library_path_from_script, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | library_contruction_protocol | source_qc | lib_name_2 | lib_name_3 | source_name | individual | infoStage_2 | infoStage_3 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | testis | 15 years | M | 9597 | 10X Genomics V2,10X Genomics | 3'end | SN224 | SAMEA10418842 | 28/01/2025 | Tissue pieces were homogenized in prechilled 250 mM sucrose, 25 mM KCl, 5 mM MgCl2, 10 mM HEPES pH 8, 1 %, BSA, 0.1 % IGEPAL, 1 µM DTT, 0.4 U/µL RNaseIn, and 0.2 U/µL Superasin and lysed for 5 min on ice. The lysate was centrifuged at 100 x g for 1 min at 4 °C. The supernatant was transferred to a new reaction tube and centrifuged at 500 x g for 5 min at 4 °C. The supernatant was removed and the pellet resuspended in 1 mg/mL DSP in PBS and incubated for 30 min at room temperature. The fixation was quenched by addition of Tris-HCl to a final concentration of 20 mM. The fixed suspension was pelleted at 500 x g for 5 min at 4 °C. The supernatant was removed and the pellet resuspended in 250 mM sucrose, 25 mM KCl, 5 mM MgCl2, 10 mM TRIS-HCl pH 8, 1 %, BSA, 1 µM DTT, 0.4 U/µL RNaseIn, and 0.2 U/µL Superasin. This was centrifuged at 500 x g for 5 min at 4 °C. The supernatant was removed and the pellet resuspended in PBS. Nuclei were isolated through a combination of mechanical and chemical lysis. Per library 15,000 – 20,000 nuclei were loaded into one channel of the ChromiumTM Single Cell A Chip (10X Genomics®). Libraries were prepared using Chromium Single Cell 3′ Library & Gel Bead Kit v2 according to manufacturer's instructions. | E-MTAB-11067:SN224 | 2 | adult | public | |||||||||||||||||||||||
| 1 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | testis | 36 years | M | 9597 | 10X Genomics V2,10X Genomics | 3'end | SN219 | SAMEA10418841 | 28/01/2025 | Tissue pieces were homogenized in prechilled 250 mM sucrose, 25 mM KCl, 5 mM MgCl2, 10 mM HEPES pH 8, 1 %, BSA, 0.1 % IGEPAL, 1 µM DTT, 0.4 U/µL RNaseIn, and 0.2 U/µL Superasin and lysed for 5 min on ice. The lysate was centrifuged at 100 x g for 1 min at 4 °C. The supernatant was transferred to a new reaction tube and centrifuged at 500 x g for 5 min at 4 °C. The supernatant was removed and the pellet resuspended in 1 mg/mL DSP in PBS and incubated for 30 min at room temperature. The fixation was quenched by addition of Tris-HCl to a final concentration of 20 mM. The fixed suspension was pelleted at 500 x g for 5 min at 4 °C. The supernatant was removed and the pellet resuspended in 250 mM sucrose, 25 mM KCl, 5 mM MgCl2, 10 mM TRIS-HCl pH 8, 1 %, BSA, 1 µM DTT, 0.4 U/µL RNaseIn, and 0.2 U/µL Superasin. This was centrifuged at 500 x g for 5 min at 4 °C. The supernatant was removed and the pellet resuspended in PBS. Nuclei were isolated through a combination of mechanical and chemical lysis. Per library 15,000 – 20,000 nuclei were loaded into one channel of the ChromiumTM Single Cell A Chip (10X Genomics®). Libraries were prepared using Chromium Single Cell 3′ Library & Gel Bead Kit v2 according to manufacturer's instructions. | E-MTAB-11067:SN219 | 1 | adult | public |
anatomical entity¶
In [ ]:
infoOrgan = library['infoOrgan'].drop_duplicates().sort_values()
organ_df = pd.DataFrame(infoOrgan)
organ_df = organ_df.reindex(columns=[*organ_df.columns.tolist(), 'notes_anat', 'anatId_', 'anatName_', 'anatAnnotationStatus_', 'infoOrgan_new', 'comment_anat'], fill_value="")
organ_df.to_csv(info_anat_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
if not os.path.exists(info_anat_complete_path):
organ_df.to_csv(info_anat_complete_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
# options for anatAnnotationStatus: perfect match, missing child term, other
In [ ]:
organ_df_complete = pd.read_csv(info_anat_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(organ_df_complete)
| infoOrgan | notes_anat | anatId_ | anatName_ | anatAnnotationStatus_ | infoOrgan_new | comment_anat | |
|---|---|---|---|---|---|---|---|
| 0 | testis | UBERON:0000473 | testis | perfect match |
In [ ]:
library = library.merge(organ_df_complete, left_on='infoOrgan', right_on='infoOrgan')
In [ ]:
library['anatId'] = library['anatId_'].values
library['anatName'] = library['anatName_'].values
library['anatAnnotationStatus'] = library['anatAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments
#library['infoOrgan'] = library['infoOrgan_new'].values
#library['comment'] = library[['comment', 'comment_anat']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | UBERON:0000473 | testis | testis | 15 years | perfect match | M | 9597 | 10X Genomics V2,10X Genomics | 3'end | SN224 | SAMEA10418842 | 28/01/2025 | |||||||||||||||||
| 1 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | UBERON:0000473 | testis | testis | 36 years | perfect match | M | 9597 | 10X Genomics V2,10X Genomics | 3'end | SN219 | SAMEA10418841 | 28/01/2025 |
In [ ]:
infoStage = library['infoStage'].drop_duplicates().sort_values()
stage_df = pd.DataFrame(infoStage)
stage_df = stage_df.reindex(columns=[*stage_df.columns.tolist(), 'notes_stage', 'stageId_', 'stageName_', 'stageAnnotationStatus_', 'infoStage_new','comment_stage'], fill_value="")
stage_df.to_csv(info_stage_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
if not os.path.exists(info_stage_complete_path):
stage_df.to_csv(info_stage_complete_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
# options for stageAnnotationStatus: perfect match, missing child term, other
In [ ]:
stage_df_complete = pd.read_csv(info_stage_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(stage_df_complete)
| infoStage | notes_stage | stageId_ | stageName_ | stageAnnotationStatus_ | infoStage_new | comment_stage | |
|---|---|---|---|---|---|---|---|
| 0 | 15 years | PpanDv:0000025 | 15-year-old stage | perfect match | |||
| 1 | 36 years | PpanDv:0000040 | aged stage | missing child term |
In [ ]:
library = library.merge(stage_df_complete, left_on='infoStage', right_on='infoStage')
In [ ]:
library['stageId'] = library['stageId_'].values
library['stageName'] = library['stageName_'].values
library['stageAnnotationStatus'] = library['stageAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments
#library['infoStage'] = library['infoStage_new'].values
#library['comment'] = library[['comment', 'comment_stage']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | UBERON:0000473 | testis | PpanDv:0000025 | 15-year-old stage | testis | 15 years | perfect match | perfect match | M | 9597 | 10X Genomics V2,10X Genomics | 3'end | SN224 | SAMEA10418842 | 28/01/2025 | ||||||||||||||
| 1 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | UBERON:0000473 | testis | PpanDv:0000040 | aged stage | testis | 36 years | perfect match | missing child term | M | 9597 | 10X Genomics V2,10X Genomics | 3'end | SN219 | SAMEA10418841 | 28/01/2025 |
sex, strain, genotype, speciesId¶
- uniprot strain list
- uniprot species list
- bgee strain mapping
- sex options: M (male), F (female), NA (not available, unknown), mixed (both male and female)
In [ ]:
#library.loc[library["sex"] == "male", "sex"] = "M"
#library.loc[library["sex"] == "female", "sex"] = "F"
#library.loc[:,'strain'] = ''
#library.loc[:,'genotype'] = ''
#library.loc[:,'speciesId'] = ''
# view
display_df(library)
protocol & RNAseqTags¶
In [ ]:
# making these variables because we use them again in the experiment file
# usually 10X Genomics V1/V2/V3/V3.1, Smart-seq, Smart-seq2
my_protocol = '10X Genomics V2'
# Full-length or 3'end or 5'end
my_protocolType = "3'end"
library.loc[:,'protocol'] = my_protocol
library.loc[:,'protocolType'] = my_protocolType
# scRNA-seq, Sn-scRNA-seq
library.loc[:,'RNAseqTags'] = 'Sn-scRNA-seq'
# view
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | UBERON:0000473 | testis | PpanDv:0000025 | 15-year-old stage | testis | 15 years | perfect match | perfect match | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN224 | SAMEA10418842 | 28/01/2025 | |||||||||||||
| 1 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | UBERON:0000473 | testis | PpanDv:0000040 | aged stage | testis | 36 years | perfect match | missing child term | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN219 | SAMEA10418841 | 28/01/2025 |
condition¶
In [ ]:
# ex. control, diet, light, reproductive capacity, time post mortem, time post feeding,
# exercise details, menstruation, personality, litter size
#library.loc[library["condition"] == "old", "condition"] = "new"
# view
display_df(library)
annotator id, last modification date¶
In [ ]:
library.loc[:,'annotatorId'] = 'SAC'
library.loc[:,'lastModificationDate'] = '2025-01-28'
# view
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | UBERON:0000473 | testis | PpanDv:0000025 | 15-year-old stage | testis | 15 years | perfect match | perfect match | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN224 | SAMEA10418842 | SAC | 2025-01-28 | ||||||||||||
| 1 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | UBERON:0000473 | testis | PpanDv:0000040 | aged stage | testis | 36 years | perfect match | missing child term | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN219 | SAMEA10418841 | SAC | 2025-01-28 |
comments¶
In [ ]:
#library.loc[:,'comment'] = ''
save complete file with correct columns¶
In [ ]:
library_file_complete = library[library_cols]
library_file_complete.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
# view
display_df(library_file_complete)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | UBERON:0000473 | testis | PpanDv:0000025 | 15-year-old stage | testis | 15 years | perfect match | perfect match | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN224 | SAMEA10418842 | SAC | 2025-01-28 | ||||||||||||
| 1 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | UBERON:0000473 | testis | PpanDv:0000040 | aged stage | testis | 36 years | perfect match | missing child term | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN219 | SAMEA10418841 | SAC | 2025-01-28 |
script - barcode (10X only)¶
In [ ]:
barcode_column = "barcode"
library_column = "library"
cell_type_column = "CELL_TYPE"
In [ ]:
! python3 $path_to_barcodes_script $path_to_output --scRNASeqLibrary $library_to_add_path --barcode_file $path_to_barcode_file --barcode_col $barcode_column --libName_col $library_column --cellType_col $cell_type_column --ignore_check --no_additional_file
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/create_scRNASeq_barcode_v2.py:10: DeprecationWarning:
Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),
(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)
but was not found to be installed on your system.
If this would cause problems for you,
please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466
import pandas as pd
There are 2 unique libraries in scRNASeqLibrary.tsv table
There are 2 unique libraries in the barcode table provided
Be extra careful if not same number of libraries in both tables, always manually check the matching names in 'matching_lib_names.tsv' table output
100%|██████████████████████████████████████████| 2/2 [00:00<00:00, 21788.59it/s]
name_Library new_lib_name
4091 SN224 SN224
5577 SN219 SN219
396 SN219 SN219
7036 SN219 SN219
9513 SN219 SN219
6658 SN219 SN219
2823 SN224 SN224
1932 SN219 SN219
6254 SN224 SN224
3371 SN224 SN224
9292 SN219 SN219
9509 SN219 SN219
2201 SN219 SN219
4148 SN224 SN224
6972 SN224 SN224
2579 SN219 SN219
5622 SN224 SN224
1527 SN219 SN219
5404 SN219 SN219
1040 SN219 SN219
0 libraries dont have any barcodes !!
the following libraries don't have any barcodes: set()
check library names match¶
In [ ]:
lib_names = pd.read_csv(lib_names_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(lib_names)
| from_barcode_table | from_lib_table | |
|---|---|---|
| 0 | SN219 | SN219 |
| 1 | SN224 | SN224 |
cell type annotation - 10X version¶
In [ ]:
barcode_file = pd.read_csv(barcode_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
In [ ]:
cell_type = barcode_file['cell_type'].drop_duplicates().sort_values()
cell_df = pd.DataFrame(cell_type)
cell_df = cell_df.reindex(columns=[*cell_df.columns.tolist(), 'notes_cell', 'cellTypeId_', 'cellTypeName_', 'cellTypeAnnotationStatus_', 'cell_type_new','comment_cell'], fill_value="")
cell_df.to_csv(info_celltype_path, sep="\t", index=False)
if not os.path.exists(info_celltype_complete_path):
cell_df.to_csv(info_celltype_complete_path, sep="\t", index=False)
# options for cellTypeAnnotationStatus: perfect match, missing child term, other
In [ ]:
cell_df_complete = pd.read_csv(info_celltype_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(cell_df_complete)
| cell_type | notes_cell | cellTypeId_ | cellTypeName_ | cellTypeAnnotationStatus_ | cell_type_new | comment_cell | |
|---|---|---|---|---|---|---|---|
| 0 | should be NA/none | CL:0000255 | eukaryotic cell | other | none | ||
| 1 | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | Undifferentiated_Spermatogonia | ||
| 2 | Differentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | Differentiated_Spermatogonia | ||
| 3 | Early_Round_spermatids | early spermatid aka round spermatid definition: A spermatid in an early stage of maturation that has a round morphology and is transcriptionally active | CL:4030036 | early spermatid | missing child term | Early_Round_spermatids | |
| 4 | Elongated_spermatids | CL late spermatid definition: A spermatid in a late stage of maturation that has an elongated morphology and is transcriptionally inert when the acrosome is fully developed. | CL:4030037 | late spermatid | perfect match | Elongated_spermatids | |
| 5 | Late_Round_spermatids | early spermatid aka round spermatid definition: A spermatid in an early stage of maturation that has a round morphology and is transcriptionally active | CL:4030036 | early spermatid | missing child term | Late_Round_spermatids | |
| 6 | Leptotene_Spermatocytes | Leptotene, Zygotene, and Pachytene spermatocytes are all primary spermatocytes | CL:0000656 | primary spermatocyte | missing child term | Leptotene_Spermatocytes | |
| 7 | Pachytene_Spermatocytes | Leptotene, Zygotene, and Pachytene spermatocytes are all primary spermatocytes | CL:0000656 | primary spermatocyte | missing child term | Pachytene_Spermatocytes | |
| 8 | Zygotene_Spermatocytes | Leptotene, Zygotene, and Pachytene spermatocytes are all primary spermatocytes | CL:0000656 | primary spermatocyte | missing child term | Zygotene_Spermatocytes | |
| 9 | Other_somatic | CL:0000255 | eukaryotic cell | other | Other_somatic | ||
| 10 | Sertoli | somatic cells that nurture the germ cells during spermatogenesis | CL:0000216 | Sertoli cell | perfect match | Sertoli |
In [ ]:
barcode_file = barcode_file.merge(cell_df_complete, left_on='cell_type', right_on='cell_type')
In [ ]:
barcode_file['cellTypeId'] = barcode_file['cellTypeId_'].values
barcode_file['cellTypeName'] = barcode_file['cellTypeName_'].values
barcode_file['cellTypeAnnotationStatus'] = barcode_file['cellTypeAnnotationStatus_'].values
In [ ]:
# optional - update cell type name and add comments
barcode_file['cell_type'] = barcode_file['cell_type_new'].values
#barcode_file['comment'] = barcode_file[['comment', 'comment_cell']].agg(' '.join, axis=1)
In [ ]:
barcode_file_complete = barcode_file[barcode_cols]
display_df(barcode_file_complete)
barcode_file_complete.to_csv(barcode_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| barcode | cluster | library | experiment | tissue | cell_type | anatId_a_posteriori | anatName_a_posteriori | anat_a_posteriori_annotationStatus | cellTypeId | cellTypeName | cellTypeAnnotationStatus | name_Library | comments | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | TGCGTGGAGTGGGCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1 | TGTATTCCAACACCCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 2 | TCAATCTTCACGACTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 3 | CACCAGGCATCGATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 4 | TAAGAGAAGCCTATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 5 | TCCACACTCGCGCCAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 6 | AGATCTGTCATGTCCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 7 | TTAGGACTCCTAGGGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 8 | AGATTGCCATAGGATA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 9 | CTAACTTAGGAATGGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 10 | CTCGAAAGTTAAGATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 11 | CAGCTGGAGGTAGCCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 12 | GTACTTTCAATGGAAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 13 | TACACGAGTACGCTGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 14 | TACCTTATCAATACCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 15 | AAGGAGCAGTGTTTGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 16 | CAAGAAACAATCGAAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 17 | AACCGCGTCCACGACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 18 | ACGAGCCTCCGGCACA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 19 | ATAAGAGGTCAAAGCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 20 | TCGGTAAGTGACTCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 21 | CTAGCCTTCCAAGTAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 22 | GTGTGCGCAATCACAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 23 | GTTCGGGCACTTAAGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 24 | TCTATTGAGTCGCCGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 25 | GTGGGTCGTCCAACTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 26 | CTCGTACAGTTTCCTT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 27 | TTCTTAGGTTCCACGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 28 | CTCATTATCGAGCCCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 29 | ATCTACTCAATGGAGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 30 | AAGACCTGTAGGCATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 31 | GTGCAGCTCGCCTGAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 32 | AGCGGTCGTTGCCTCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 33 | TGACGGCGTCCTCTTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 34 | GCAGTTAAGGAGCGAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 35 | AACGTTGCAGTTCATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 36 | TTAGGCAAGAGTACAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 37 | AGATCTGTCGACGGAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 38 | GACTGCGCATAGGATA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 39 | AAGGAGCGTAACGTTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 40 | TCAGATGAGAGAGCTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 41 | GAGGTGAGTTCTGGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 42 | TCAGCAAGTATTAGCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 43 | CATCAAGTCCTTTCGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 44 | ACTGAACTCTCTGTCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 45 | AGTAGTCCAATGCCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 46 | TATGCCCCATGCCCGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 47 | ACCTTTAGTCTAGGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 48 | AGGGATGGTAAGCACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 49 | CCCTCCTAGTGACATA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 50 | GTTCATTTCCTGCTTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 51 | AGTTGGTCAGACGTAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 52 | TAAACCGGTCATATGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 53 | ATTGGTGAGGCTAGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 54 | TCAGCAATCATGTGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 55 | CTAGCCTCACAACTGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 56 | CAAGTTGTCTTTCCTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 57 | ATCACGACATTGTGCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 58 | GTCATTTCAGCGATCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 59 | GTACTCCTCCGAGCCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 60 | TGAGGGAAGCGCCTTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 61 | AGGGAGTGTTCATGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 62 | AAGGCAGCAAAGCAAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 63 | ACTTTCACATTATCTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 64 | ACTTGTTTCAATCACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 65 | CAACCAACATGTCTCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 66 | TCTTTCCCACGTAAGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 67 | CACAGTACATCCCATC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 68 | GAACCTAAGCTGTTCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 69 | CCTAAAGTCGCATGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 70 | GCAGCCAGTCAGATAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 71 | GTAGTCATCGCCATAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 72 | TAGTTGGAGTGTGAAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 73 | CATTATCGTTGCTCCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 74 | AAAGCAAGTCACTGGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 75 | GGGAATGAGCTGTTCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 76 | AGCTCTCAGCGTTTAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 77 | CCGTTCAAGGGATGGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 78 | TATCTCATCTGCGTAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 79 | TAGCCGGCATCCAACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 80 | CGACCTTGTATAGGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 81 | TTTGTCATCTGGTTCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 82 | GCATACAGTTTGTGTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 83 | ACGCCGATCAAGAAGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 84 | CACCACTGTAGCCTCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 85 | CATCAGAAGAACAATC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 86 | GTAGTCACATTTCACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 87 | ATCGAGTGTCCAGTAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 88 | CGCCAAGCAACGATCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 89 | CAGCTAAGTTCCACTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 90 | CACTCCAAGTTTAGGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 91 | GACGGCTTCCTGCCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 92 | AAAGCAAGTGCTCTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 93 | CATGGCGGTAGATTAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 94 | TCAATCTAGTACGCCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 95 | CTTAGGAAGCCCAGCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 96 | CACTCCATCCGTTGTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 97 | TGCTACCTCTTGGGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 98 | CGTTGGGGTCTTGATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 99 | AACTCTTGTCTCTCTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 100 | GAGGTGAGTTAGATGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 101 | ACACCAACATCGGAAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 102 | CACACTCTCCCGGATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 103 | TGACGGCAGGTCGGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 104 | GAACATCAGAGACGAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 105 | TGTCCCAGTAAGTAGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 106 | AGTGTCAGTGACGGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 107 | ACGCCAGGTAGCACGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 108 | AGTAGTCGTCTAAACC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 109 | AATCCAGTCTTGGGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 110 | CGGAGCTTCTACGAGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 111 | TTCGGTCTCCTACAGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 112 | TTGTAGGTCGCAAGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 113 | CATGCCTAGGCTACGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 114 | CCTAAAGCATTGCGGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 115 | TTGAACGTCGCCCTTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 116 | CTCTACGTCTCGTATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 117 | CGTCCATCAAGGGTCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 118 | TGGCCAGCAGCATACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 119 | GTGTGCGAGCGTGTCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 120 | GCATGCGCACGACGAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 121 | GGGAGATCAATGTAAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 122 | AAACGGGTCCTAGGGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 123 | CGATGGCCAGTACACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 124 | CACAAACAGTTAACGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 125 | ACAGCTAAGCATCATC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 126 | ATTGGTGAGGGCTCTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 127 | ATTACTCTCGCCTGTT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 128 | GTCTCGTCAAGCCGTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 129 | GCTGCTTTCGTAGATC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 130 | CCGGTAGCAGGAATGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 131 | GTTTCTAAGTCAAGGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 132 | CTAGCCTGTCGTCTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 133 | GGCAATTGTTGAACTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 134 | AGAATAGTCAGCAACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 135 | CCTTCGAAGTGGCACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 136 | TGACTAGCACGTAAGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 137 | ACGGGCTGTTCCATGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 138 | AAGACCTAGTTGTAGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 139 | CACATAGGTAACGCGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 140 | CACCAGGGTAGGACAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 141 | GCCTCTATCTCCAACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 142 | TGACGGCCACTAGTAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 143 | GTGGGTCTCGCATGGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 144 | AGTGTCAAGGCAAAGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 145 | ACCGTAAAGAGTTGGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 146 | TGTGTTTAGTGGGCTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 147 | GTAGTCAAGCGTAATA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 148 | ATTCTACGTCCGTTAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 149 | ACCAGTATCTCCAACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 150 | ACGGCCATCTGGAGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 151 | TCTATTGTCATATCGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 152 | ATCATCTAGCTAGGCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 153 | GCGAGAAGTTGGTGGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 154 | AGCAGCCGTACCATCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 155 | AAGGAGCTCCAGGGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 156 | TAGTTGGGTACTCTCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 157 | AGTTGGTAGAAACGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 158 | CATGCCTAGGCGACAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 159 | CACATAGCAATGGTCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 160 | CTACACCGTTTGTGTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 161 | CCCATACCACAAGTAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 162 | CTACATTAGGGCATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 163 | GTAACGTCAGGATCGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 164 | CCGGTAGCACACCGAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 165 | CTTAACTCACTTGGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 166 | ACATGGTTCGGTGTCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 167 | CACATTTGTTTGTTGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 168 | TCAGGTAGTGGCTCCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 169 | GGGCACTAGCGCTTAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 170 | CAACCTCAGGACGAAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 171 | CCAATCCCATCGGTTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 172 | GGTGCGTGTGAAATCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 173 | TACGGATCAAGCCTAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 174 | TTGGCAAGTACCATCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 175 | GTAACGTTCATTGCCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 176 | CGAATGTCAGGCTGAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 177 | CATTCGCAGCTCCTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 178 | GTATCTTGTACTCTCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 179 | TAGCCGGAGAATCTCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 180 | GGGACCTTCCACGTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 181 | GTTCATTGTTCAACCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 182 | TGGCGCACAATGACCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 183 | TACAGTGCACTTGGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 184 | TGAGAGGCAGTATCTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 185 | CGGTTAATCTACCAGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 186 | GTCTCGTAGCAATATG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 187 | CAGCTGGGTGGACGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 188 | AGAGCTTAGCTACCTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 189 | GGCTCGAGTGACTACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 190 | TACTTGTGTTCCCGAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 191 | CGTTCTGTCCCACTTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 192 | CTAATGGTCCCAAGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 193 | GTCGTAATCCACGAAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 194 | AAAGATGTCCAAACTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 195 | CCGTTCAGTACTTGAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 196 | ACACCGGCAATAGCAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 197 | TCACAAGTCCAGAGGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 198 | TCTTTCCCACCATGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 199 | AGCATACGTAAATGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 200 | TCCCGATGTACAAGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 201 | TTTGTCAAGGGATCTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 202 | TTAGTTCAGCACCGTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 203 | CATCGAATCGATCCCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 204 | CGTCTACGTGTGAAAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 205 | AATCGGTGTGGGTATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 206 | TAAACCGAGCCTATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 207 | ACCAGTACACCAACCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 208 | GTTCTCGAGACTACAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 209 | CTCGTCAAGCCGGTAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 210 | AGATCTGCACAGAGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 211 | CCACCTAAGGACAGCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 212 | AAAGATGGTGCGAAAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 213 | GATCGTAGTGCCTGGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 214 | AAGGTTCTCTTGTACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 215 | GTTCTCGAGTCCCACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 216 | CCTTACGTCCAGATCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 217 | TCGGGACAGCTAGTGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 218 | ATCCGAAAGACTGTAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 219 | TGACTTTAGCCCAACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 220 | CCTTTCTAGGAGTCTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 221 | GCTTCCAGTCTAGAGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 222 | GAACCTAAGCTAACAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 223 | TTTGTCATCCGCAGTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 224 | CACAGTACAGCATACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 225 | AGAGCTTAGGCCGAAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 226 | CTACATTGTTTGTGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 227 | GTCTCGTCAGCTATTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 228 | CATTATCTCAACGGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 229 | ATCTACTTCTTCTGGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 230 | GTGCTTCAGAGCCCAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 231 | CTCACACGTTAGATGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 232 | ATAACGCCAGTAACGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 233 | CATCGAACAGGGAGAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 234 | AAACGGGAGGCAAAGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 235 | GATGCTAAGCTACCGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 236 | TTCTCAACAGTGACAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 237 | TACAGTGCATCTCGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 238 | GTGCATATCTAACTTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 239 | ATAGACCCAATTCCTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 240 | AGGCCGTTCGGATGTT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 241 | TTCTCCTAGGCTAGAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 242 | AGCGGTCTCCAGTAGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 243 | CAGCAGCCAGGGATTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 244 | TTTCCTCTCGTATCAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 245 | ATCATCTCACCGAAAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 246 | ATTCTACCAATCCGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 247 | ATTGGACGTTCGTTGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 248 | TGGCTGGCAATGCCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 249 | CTAGCCTTCGGAGCAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 250 | CTCGTCATCTGGTATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 251 | CTAATGGCACCAGCAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 252 | AGTGAGGAGCTGAAAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 253 | CGTTAGAGTCTCACCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 254 | TACTCGCTCGCCCTTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 255 | GACCAATAGAGCTGGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 256 | GATCGTATCCTTTCGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 257 | CCCTCCTGTCAAGCGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 258 | GGGACCTTCCACTCCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 259 | TCTATTGAGCCGCCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 260 | CAGGTGCGTTTGTGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 261 | GTAGTCAAGTGAACGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 262 | GAACATCAGGCATGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 263 | GGACAAGTCTACGAGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 264 | TGAGCCGTCTTTAGGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 265 | CGACTTCTCACTTACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 266 | CTGCTGTTCCCAGGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 267 | CACATAGTCTTGTTTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 268 | GTCGTAAGTTCCACGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 269 | GATGAGGCACCGAATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 270 | TTGACTTGTCACCTAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 271 | ACGCCGAGTAGAGGAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 272 | GTTACAGCAGCGATCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 273 | ACGATGTTCCGTTGTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 274 | CGAGAAGCACAGGAGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 275 | ATAGACCTCCTTGACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 276 | TCTTTCCAGCCGCCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 277 | CACCACTCAGACTCGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 278 | GACTAACTCGGCTACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 279 | TGTGGTAAGGTGCACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 280 | TCAACGAGTATTACCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 281 | CCTTTCTTCACTCTTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 282 | CTCAGAACACCATCCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 283 | TCAGCTCTCTTCATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 284 | CGCCAAGAGCAGCCTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 285 | GTTACAGAGATCCCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 286 | ACGCAGCGTAAATACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 287 | AAAGATGCAAACGCGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 288 | GGACGTCTCTGTTTGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 289 | AACTCAGGTACGCACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 290 | TTTGGTTTCGCCGTGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 291 | CGAGCCATCTTGTTTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 292 | GTATCTTGTATTCGTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 293 | TTAGGACGTGGTGTAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 294 | GTCAAGTCAATCGAAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 295 | GCATGATGTTATCACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 296 | AAGGAGCCATCCAACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 297 | TCATTACCATGCGCAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 298 | ACTTGTTCAAACCCAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 299 | ACACCCTGTCGTCTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 300 | GACACGCCACGAAACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 301 | TTCTCAATCGGCGCAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 302 | ACACTGAAGATGCCAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 303 | CTAAGACAGAGACTTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 304 | CCCTCCTGTTACCAGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 305 | AGTGTCAGTTGTTTGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 306 | GTGCAGCTCGGCTACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 307 | ATGGGAGAGTGGGTTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 308 | GTACGTAGTCGCATCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 309 | TCTGGAATCTTGTACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 310 | TACTTGTTCGATGAGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 311 | TCCCGATGTCCCGACA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 312 | TGGGAAGAGAGTTGGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 313 | TGAGCCGAGGCCGAAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 314 | AAACCTGAGTCGCCGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 315 | ATCCACCGTATTCGTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 316 | CGTTAGACATGTCCTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 317 | TACTCATGTTATGTGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 318 | TCAACGATCTAACTCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 319 | TGCTGCTTCTCGCATC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 320 | CGTCACTAGGTAGCCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 321 | CGCTTCATCGCCATAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 322 | GCATGCGCAGATGGCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 323 | GCTGCTTCATTGGGCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 324 | CCGTTCACAGACACTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 325 | CTACGTCCAGTCGATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 326 | CTCAGAAGTCGTTGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 327 | TGCGGGTCAGGCTGAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 328 | AGGGATGAGTGATCGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 329 | TCAACGACACCGGAAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 330 | GCTGCGAAGGACTGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 331 | ATTATCCGTCCAGTAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 332 | GATCAGTGTGATGCCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 333 | CGCCAAGGTTCGTCTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 334 | ACACCCTCAGACAAAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 335 | GGGCATCTCCCTAATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 336 | CCTTTCTTCTCCAGGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 337 | CAACCTCTCCTCGCAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 338 | GTGTTAGGTAAGAGGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 339 | CCTATTATCAACGGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 340 | GTAACGTTCTGTTTGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 341 | GCGCAACGTACTCGCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 342 | TCAGGTAGTCAAAGCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 343 | CTCGAGGGTGACGCCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 344 | AGTCTTTAGGAGCGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 345 | TCTTTCCCACAACGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 346 | CCTCAGTTCAAACCAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 347 | TCACGAAAGGATGTAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 348 | GGGCATCGTTATCCGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 349 | TTAGGACAGTATCTCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 350 | GTTAAGCTCGTCTGCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 351 | GGGAGATTCCGTTGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 352 | CTGATAGGTAAATGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 353 | CTCTACGGTCTCCCTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 354 | TCGTACCCAGGCGATA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 355 | CGTAGCGCATACGCCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 356 | GCATACATCGCCGTGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 357 | CCTTACGGTATGCTTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 358 | GACCTGGAGGTGCTTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 359 | ACGATGTGTCCAGTGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 360 | AAAGATGCACTCTGTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 361 | CCTTCGAAGGGCATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 362 | CTAACTTGTGCATCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 363 | CTCACACGTAGTAGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 364 | CTGTTTATCGACCAGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 365 | CCACGGAAGCTATGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 366 | GATCAGTTCGTATCAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 367 | ACACCGGAGAATTCCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 368 | TTCTCCTTCACCTCGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 369 | AGTCTTTGTCGAATCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 370 | CATCAAGCATCTCGCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 371 | CAAGAAATCCAAGTAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 372 | CGGCTAGGTAGCGTGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 373 | TCAGCAACAGTACACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 374 | ACGATGTTCCGTACAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 375 | TCGCGTTAGTGGGTTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 376 | CTCGAGGAGACTACAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 377 | TGGCGCAAGAGCCTAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 378 | CGCGTTTCATGCCTAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 379 | GATCAGTGTTGCTCCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 380 | TAGTGGTTCCTAGTGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 381 | GCTTGAAAGCTCTCGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 382 | GTACGTAGTATAGGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 383 | TGACTAGGTCACTTCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 384 | TCTGAGAAGTGAAGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 385 | CTAGAGTAGTGGGCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 386 | GGTGCGTGTCTCCATC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 387 | TACTTGTAGAAACGAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 388 | CGACCTTTCAGATAAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 389 | GCAGCCATCACTCTTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 390 | ACGGGCTGTCGAATCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 391 | GAACCTATCCTAGAAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 392 | GGACGTCCATTGTGCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 393 | TAGTGGTCACTGTTAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 394 | CAAGATCGTAAGGGCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 395 | CCACGGACACAGCCCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 396 | GCGCCAATCGGCCGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 397 | GTACGTATCCGCGGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 398 | GCTGCTTCAGCTGCTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 399 | CAGTAACAGTCCCACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 400 | ACGAGCCGTGACCAAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 401 | GTGCATATCCGGGTGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 402 | TTCTACACATGGATGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 403 | GTCTCGTAGATGTGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 404 | TGTATTCAGGTGATTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 405 | CTGATCCGTCTAAACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 406 | GTCACGGCACGTCTCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 407 | GTTACAGCAGTGGGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 408 | GAACCTAAGAGCTATA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 409 | GATTCAGCATTCCTGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 410 | GTGTTAGTCATCGGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 411 | TGTGGTAGTTAGTGGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 412 | GCTCCTAAGATGTTAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 413 | CCACCTAAGTCATGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 414 | CGTGTAACATTCGACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 415 | GAAATGAGTAAATGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 416 | TGGCGCAAGAGTACCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 417 | GCAGTTATCCAATGGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 418 | CTCGGAGCAATGAAAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 419 | TGCTGCTTCGAGAGCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 420 | ATCACGACAAGTAATG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 421 | GACCTGGTCAACACAC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 422 | ACGTCAACACCATCCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 423 | CTAGCCTCAGCATACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 424 | CGGAGTCCAGTAAGCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 425 | TCCACACTCCTCCTAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 426 | AACACGTTCACGCGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 427 | ACTGTCCGTGCAGACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 428 | ATTCTACGTCATACTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 429 | ATCTACTAGTGAAGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 430 | GACTGCGCAATGGAAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 431 | TCTCATATCCCTCTTT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 432 | TTGCGTCTCGCCTGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 433 | GAACGGATCCCAAGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 434 | TCGAGGCCATGCCTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 435 | GTAGTCAGTCAAAGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 436 | CTAGAGTCAGCGAACA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 437 | GTGTGCGTCAACGGCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 438 | CTCGTACGTCTCAACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 439 | ACAGCTATCTACCTGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 440 | CGTGTAAAGCGGCTTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 441 | CACATTTGTACAAGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 442 | GACCTGGAGTTCGATC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 443 | GTGGGTCTCTGCCCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 444 | TTGCCGTTCAATCTCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 445 | TGGACGCAGAGCAATT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 446 | CGCGGTAAGAAACCTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 447 | CAACTAGCATGCATGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 448 | CTTTGCGGTTCGTTGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 449 | CCACTACAGGACACCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 450 | TATCTCACAGGATTGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 451 | AACGTTGAGGTGATTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 452 | TGACAACTCTCTGAGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 453 | AGTGGGAGTACAGCAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 454 | TTCCCAGAGCGCCTCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 455 | TTAACTCAGTTAGGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 456 | CTCAGAAGTAAGTAGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 457 | CGGACGTTCACTGGGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 458 | AACACGTCAGCTTCGG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 459 | GTACTCCGTGCAGGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 460 | CGTAGCGGTTAAAGTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 461 | CTCGGAGTCCAGAGGA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 462 | TGACGGCCAGTAAGCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 463 | CATCCACCATCATCCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 464 | GCCAAATAGCACCGTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 465 | ATCGAGTCAGTGAGTG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 466 | CTCTACGCAATGGAGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 467 | TTCCCAGTCTAACTCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 468 | TCGGGACGTAAGGGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 469 | CGACCTTTCCGAAGAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 470 | CGTCTACGTCGGCACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 471 | CGGACACTCTCGGACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 472 | CCCATACTCAAACGGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 473 | CGTGTAATCGCCATAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 474 | TTCGAAGCACAGGTTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 475 | ACCAGTAAGATGGGTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 476 | TGCCCTAGTTGGAGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 477 | TTCTCCTTCGCAAACT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 478 | CGGACTGTCAGCTCTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 479 | TGCGTGGTCACGCGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 480 | CTGCGGATCTTTAGGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 481 | TATCAGGTCTGGAGCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 482 | TGCCCATTCAGAGACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 483 | GCGCAACTCCTTTCGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 484 | CGTCTACCATGGTCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 485 | TCGAGGCCAAAGTCAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 486 | GAAATGAAGTATGACA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 487 | TCTGGAAAGGACATTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 488 | GTAGTCAGTGACTCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 489 | TACACGAGTCGTGGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 490 | AGCGTATGTAACGTTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 491 | CTGGTCTAGTGTTGAA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 492 | CGCTATCAGGGTCTCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 493 | ACACCGGAGATATACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 494 | GGCCGATGTAGCGTCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 495 | TCTCATATCGCCAGCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 496 | GTTCTCGAGGAGTTGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 497 | GGTATTGCAGACGCAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 498 | CGATCGGCAACACGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 499 | ACTGAACTCCAAACAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 500 | CCCATACTCGGCATCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 501 | ACGGGCTAGCCGCCTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 502 | TTAACTCAGGTAAACT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 503 | CATCAAGCATCTGGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 504 | CTACATTCACGAAATA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 505 | GGCGTGTTCCCTTGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 506 | GAATAAGGTTATGTGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 507 | GTCTCGTCAATGGTCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 508 | GTTACAGGTCTTCGTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 509 | CAGCTGGCACGGTAAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 510 | CAGCTGGGTACCTACA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 511 | GGGAATGGTCTTGATG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 512 | GATTCAGCAAGCTGAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 513 | TGACGGCAGCACAGGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 514 | CGATGGCTCTTTACGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 515 | TACCTTACACCAGGCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 516 | TTCTTAGGTTCAGCGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 517 | CGTTCTGGTCTTCTCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 518 | ATCTACTTCGATCCCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 519 | TAAGAGACATCACAAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 520 | TCGAGGCTCGGCCGAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 521 | ACGTCAATCGTTACAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 522 | GTACTCCAGAGCCTAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 523 | ATCCACCTCGTATCAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 524 | CTGATCCGTAATCACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 525 | CGTGTAAGTCATCCCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 526 | TGCCAAAGTGAGCGAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 527 | CTCGAGGTCGGCGCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 528 | GCGCGATGTATAAACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 529 | CAGCAGCAGGGCTCTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 530 | GGCCGATCAGTTTACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 531 | GTTACAGCACGAAGCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 532 | CGGAGCTAGACGACGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 533 | CATCGGGTCCTCTAGC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 534 | CACACTCGTCCGAATT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 535 | CTACATTTCAAGCCTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 536 | CAGCTAATCGGCGCAT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 537 | GAGTCCGTCTGCGACG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 538 | CATATTCGTCGGCTCA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 539 | AAAGTAGTCTGGTGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 540 | TGCACCTAGGGAACGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 541 | AGTGTCAGTTTCCACC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 542 | TTCTACACAAGTACCT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 543 | TCCCGATCATAGGATA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 544 | ACTGATGAGATACACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 545 | CCTTACGTCCCAAGTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 546 | GTACTTTCACGGCCAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 547 | CCGTGGACAAGTTCTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 548 | AGTCTTTCACCGAATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 549 | TGGCCAGAGTACGCCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 550 | CTCACACAGTATGACA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 551 | ACCGTAAGTAGTACCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 552 | GGTGCGTAGCTAGTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 553 | TTCTCCTAGATGAGAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 554 | CCTTACGGTGTTTGGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 555 | GACGGCTGTTGGTAAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 556 | AGGGATGGTCAGAATA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 557 | ACGCAGCAGGTGGGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 558 | TCTTCGGGTGAGGGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 559 | GCATGTAGTTCCAACA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 560 | TAGAGCTGTCGAACAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 561 | CAGCCGAAGTCACGCC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 562 | TAGGCATGTAGCCTCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 563 | CATATGGGTGCAACTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 564 | TAAGCGTCAAGTTGTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 565 | GGATGTTAGGCGACAT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 566 | TCATTTGCACGCCAGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 567 | AGCGTATAGAGTGAGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 568 | CCATGTCCAGTGACAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 569 | TGGGCGTAGAAGATTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 570 | CCTAGCTGTATATGAG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 571 | ACTTGTTTCTACCTGC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 572 | ACGGAGAGTGGCAAAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 573 | ATTGGACTCAGTTTGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 574 | CCCATACAGCGGCTTC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 575 | TATGCCCAGGCAGGTT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 576 | TCGCGTTAGCGGCTTC | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 577 | GAACCTAGTGATGATA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 578 | TCGGGACTCTTGCAAG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 579 | AGCGGTCCATCGGTTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 580 | CGCCAAGGTGCTAGCC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 581 | CGTGTCTCACATGTGT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 582 | TCAACGAGTGCAGGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 583 | ATTACTCAGGTGCAAC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 584 | CCTATTATCTTGTATC | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 585 | AGCCTAAAGATATACG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 586 | ATCACGACAGCCAGAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 587 | GCTTCCATCGAATGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 588 | CTCATTACATGAAGTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 589 | TGGGCGTGTCATGCCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 590 | TGCCAAACAGCCAATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 591 | CTGTGCTTCTGCGGCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 592 | ATCTACTAGCCACGCT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 593 | CAGATCAGTATAATGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 594 | GTTCTCGCAGCCAATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 595 | ACACTGAGTATCTGCA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 596 | GCATGCGTCGGTCCGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 597 | GTAACGTAGTTAAGTG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 598 | GCAGTTAAGCCCGAAA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 599 | GACACGCTCCCAACGG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 600 | AGATTGCGTAGCCTCG | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 601 | AGGTCATCACCAGATT | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 602 | CCTTCGACAAGCCGCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 603 | CGATGGCTCTCGATGA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 604 | CGATGGCCATCTGGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 605 | ATTCTACGTTTGACTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 606 | CACTCCAAGTGGAGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 607 | CGGAGCTCACGTTGGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 608 | AGCTCTCCAGTATAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 609 | GAATGAACAGTGACAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 610 | TAAGTGCAGAGAGCTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 611 | CTGAAGTGTTCATGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 612 | GCGAGAAGTTCCCTTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 613 | CGTAGCGTCAGCACAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 614 | CGTCTACTCCGCATCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 615 | TGTTCCGGTAACGTTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 616 | CAGCAGCGTTAAAGTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 617 | GGGACCTGTATATGAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 618 | GATGAAATCAGTGCAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 619 | AAGTCTGAGGAATTAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 620 | TCATTTGAGATGGCGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 621 | GACAGAGTCGCCAGCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 622 | TTTGGTTTCGTGTAGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 623 | CACCAGGGTATCAGTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 624 | CGAGAAGTCTTCGAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 625 | GGTGCGTGTACCGAGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 626 | AGGGTGACATGGGAAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 627 | CGTCACTCATTACCTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 628 | CAGGTGCAGCGCCTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 629 | CGATTGAGTCATACTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 630 | GCGACCACAAGTCATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 631 | GTACTCCCAATCCGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 632 | GCAATCAGTGCACTTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 633 | GTCACGGCAAAGGCGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 634 | ACTGAACAGTGAACGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 635 | ACGCCGATCGTTTATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 636 | TGTCCCACACCGCTAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 637 | ACACTGATCAACGAAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 638 | GAGCAGACAGCGATCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 639 | CTACACCCATAGGATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 640 | CTAACTTCACCGGAAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 641 | AGTAGTCCACCATGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 642 | GTGCATAAGTGTTTGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 643 | CAAGAAATCGATGAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 644 | AGACGTTCAGTAAGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 645 | ATAAGAGTCATCTGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 646 | GTCACGGTCATACGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 647 | TACCTTACAGGAATGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 648 | ATTCTACTCATGTCTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 649 | CGGCTAGTCTCCTATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 650 | CTACACCAGTACGATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 651 | AAGCCGCTCAGGATCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 652 | ACTGAACCACAGAGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 653 | ACGAGCCGTTGAGTTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 654 | TTTACTGCATACTACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 655 | CCACCTAGTGTTTGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 656 | GGCCGATAGGTGTGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 657 | TCGTAGAGTTGGGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 658 | CTACGTCGTTAAGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 659 | AAAGTAGTCACGAAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 660 | CTGAAGTCAATGTAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 661 | GGACATTCATTGTGCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 662 | ATCCACCTCTTCTGGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 663 | TTGTAGGAGGGAGTAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 664 | TGTTCCGAGCTACCGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 665 | GTCGTAAGTCCAACTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 666 | CGAGCCAAGTATTGGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 667 | TTTCCTCAGAGGTTGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 668 | GACGGCTTCAGCGATT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 669 | CCTCTGATCTACTATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 670 | AAGGCAGTCAGTTTGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 671 | CTCTAATAGACTACAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 672 | CTCAGAACACCAACCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 673 | GCAATCACATATACGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 674 | GGAGCAATCTGCTTGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 675 | CGCGTTTTCAAAGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 676 | CAACCTCGTTATTCTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 677 | TGACGGCGTACGAAAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 678 | GAAACTCTCATGTCCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 679 | CTCGAGGTCAATACCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 680 | AAAGATGAGATACACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 681 | CAAGAAACAAGTCATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 682 | TTGGAACGTCCGAACC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 683 | TCACGAAGTCGTCTTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 684 | CCTTTCTTCTTCGAGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 685 | ACGATACAGCCCAATT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 686 | GCTGCTTGTACAGACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 687 | TGGTTAGTCTACCAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 688 | ATCCGAATCAGATAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 689 | CTCGAGGAGTACGATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 690 | ATGGGAGAGAGAGCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 691 | AGGTCCGGTATCAGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 692 | CGTTGGGTCCCGGATG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 693 | CTCGTACGTACATCCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 694 | TATCAGGGTAATCACC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 695 | ATGAGGGCATTCCTGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 696 | CATTCGCGTTCTGGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 697 | CTGAAACTCACTCTTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 698 | GCAAACTCATATGCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 699 | TCTTTCCTCTTGGGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 700 | CACAGGCCACCTTGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 701 | AAGACCTGTATAATGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 702 | GGCGACTTCAAAGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 703 | CGAATGTCATCTGGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 704 | AGCTCTCAGCGCTCCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 705 | CCGGTAGTCTATCCTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 706 | GGAGCAAAGGTGCTTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 707 | TACTCGCAGAATGTTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 708 | TAAGTGCCAATCGGTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 709 | GATCAGTAGACACGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 710 | CCTTCGATCAAAGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 711 | GTATTCTTCAAGGCTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 712 | GGGCACTCAACACCTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 713 | TCGTACCGTTCAGCGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 714 | GGACAGAGTGTCGCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 715 | AAGGTTCCAGTTCATG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 716 | GTGCTTCCACTGTTAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 717 | TGTTCCGTCCTAGTGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 718 | GCGCCAATCAGTTGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 719 | TCAGCTCTCAACACCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 720 | GCATGCGAGTCTCGGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 721 | CCATTCGTCTCGTTTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 722 | GAATGAAGTTATGTGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 723 | TGGTTAGAGGTAAACT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 724 | AGTAGTCGTTCCGTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 725 | AGCTCCTTCACATAGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 726 | CAACCTCTCCCTCTTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 727 | AGAGTGGGTACAGTTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 728 | TTGCCGTCATACGCTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 729 | GTGCGGTCAGCCTTGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 730 | GTCGTAAAGGCAAAGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 731 | GGGCATCGTTTGGGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 732 | CCGTTCACAAGCTGAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 733 | GATGCTACACATTAGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 734 | CTCTAATGTCAAAGAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 735 | CGATTGACACACAGAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 736 | GATCGTAAGTTCGATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 737 | CTGCTGTCATGTCCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 738 | TACAGTGCACAAGACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 739 | AGCTTGACAGCATGAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 740 | GTATCTTTCTATCCTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 741 | AGCGGTCTCTGGTATG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 742 | CTAACTTCACTGCCAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 743 | AAAGATGGTAATTGGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 744 | ACGATACGTTATCACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 745 | AACTTTCTCGATCCCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 746 | CTCGGAGAGCGCTCCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 747 | TCAGGATTCTGCGACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 748 | CCCAGTTAGCTCCTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 749 | AACTGGTAGGCATGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 750 | TCTATTGTCTGGTTCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 751 | TCTTTCCAGCTGTTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 752 | TTCGAAGTCAAGCCTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 753 | TTAACTCTCTCTAGGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 754 | ACGCCGAAGTTTCCTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 755 | CGATCGGCATCGTCGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 756 | TAGTTGGCACCCTATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 757 | CACAAACAGATGCGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 758 | CTCGTCACACCGATAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 759 | CTAAGACAGTTGAGAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 760 | ACTGTCCAGAATTCCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 761 | TCGTACCCAGCCTTTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 762 | TTCTACAGTTCAGGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 763 | TGCACCTGTCTCTCGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 764 | CCTTCGACAGTCAGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 765 | CTCGGAGGTATGAAAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 766 | CTTAGGAGTAGCCTAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 767 | TTGGAACAGGACGAAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 768 | AACTCTTCAGGACCCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 769 | GATGAGGCATTGGCGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 770 | TTCGAAGGTCGCGTGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 771 | CTCGTACTCATAAAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 772 | CATCGAATCCGCTGTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 773 | GGCCGATAGCACGCCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 774 | GTTCTCGTCCGGGTGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 775 | GCCAAATCACGTAAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 776 | GTAGTCAAGTTATCGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 777 | GTGAAGGAGTGGGTTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 778 | GGACATTAGCCAGTTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 779 | GGAGCAAGTCTTCGTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 780 | CTCAGAATCGGAAACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 781 | ACATGGTAGGCTCATT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 782 | AAAGATGCAAGAGGCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 783 | AGGGAGTGTTACGTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 784 | ACGATGTTCGTCGTTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 785 | TCAGATGGTGACTACT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 786 | TTGTAGGAGTTACGGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 787 | ACAGCCGCACGCATCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 788 | GACAGAGCAGTTTACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 789 | TGGTTCCGTTTGGCGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 790 | TGACAACTCGTGTAGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 791 | GAAGCAGCAGCAGTTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 792 | TGTGTTTGTCGCATAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 793 | ATCCACCCATAACCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 794 | ACGAGCCCAGCCACCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 795 | ATGTGTGGTCTCACCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 796 | CAACTAGGTATAAACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 797 | ATCCACCGTAAATGTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 798 | AGGTCCGAGACACGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 799 | CCTACACCAATCGAAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 800 | CTCGGGAAGATACACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 801 | TGGACGCTCATAAAGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 802 | AGCGGTCAGATCCTGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 803 | ACTGAGTAGGGTCGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 804 | TCTATTGCAAACAACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 805 | GAAACTCTCATGTGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 806 | TCAGGATTCCAAACTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 807 | TCTTCGGGTTGGTAAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 808 | CAGCTGGAGCTCCTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 809 | GATGAAAGTGCGGTAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 810 | CAGTAACTCTATCGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 811 | CCTAAAGAGATCTGAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 812 | ACTGAACTCCTAAGTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 813 | AGTGAGGTCAGTTAGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 814 | TGTATTCAGATGTCGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 815 | GGCTGGTTCTTCTGGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 816 | TGGCTGGGTTTGTGTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 817 | GTCACAATCCCTCAGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 818 | CTAATGGAGGCTCATT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 819 | TACCTATGTACTCGCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 820 | CGTCCATAGTACGCCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 821 | GTCGGGTCACATTCGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 822 | TATCAGGTCAATAAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 823 | AAACCTGAGGCGCTCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 824 | GGGCATCGTGTATGGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 825 | TTAGGACTCCCACTTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 826 | GGGATGAAGAGGTAGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 827 | TGAAAGAGTCCAGTGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 828 | CTGGTCTCAAAGAATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 829 | GCGCCAAAGTGAAGTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 830 | GTCATTTGTCCGTCAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 831 | GGGACCTCAAGGGTCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 832 | ATGTGTGAGCGACGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 833 | ACTGATGTCTAGAGTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 834 | TCTATTGTCAGTGCAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 835 | ATCGAGTGTCAACATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 836 | CGAATGTAGTAACCCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 837 | CTTGGCTAGCAATATG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 838 | GAACGGAGTATATGAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 839 | GACGCGTAGAAGATTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 840 | CCAATCCCAATAAGCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 841 | CGAGAAGCATAGGATA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 842 | TACAGTGTCGCGATCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 843 | CTGATAGAGTGTTTGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 844 | ATGTGTGCAAAGCAAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 845 | ACCAGTACATTGGTAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 846 | GATGAAAAGTCACGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 847 | CACCAGGAGAGAACAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 848 | GTGTGCGGTCAAAGCG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 849 | AGCTTGAGTCTGCAAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 850 | GACTAACTCGCGTTTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 851 | CAGCTGGGTTCGAATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 852 | AGGCCACAGTCTCCTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 853 | GAAGCAGGTCATGCCG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 854 | ACCTTTAAGCTAAACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 855 | CCACCTATCTGCTGCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 856 | GTACTTTGTGCCTGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 857 | CTAAGACCATATGGTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 858 | AACTTTCTCCGCGCAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 859 | TTCTCCTAGTAGGTGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 860 | ATCCGAATCCGTCATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 861 | TGGCGCAAGGATGTAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 862 | CGAATGTGTTACTGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 863 | CTTAGGATCGCAAACT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 864 | GACTAACGTGACGGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 865 | ATCCGAAAGAAGGACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 866 | CCATTCGAGCGAGAAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 867 | AGGTCCGAGCGTCTAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 868 | CGCGTTTCAAGTTAAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 869 | TGCGCAGGTCTCTCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 870 | ACGATGTTCAAAGACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 871 | GCTGCTTGTAAACGCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 872 | TCAGCAACACCCATGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 873 | CCTAAAGCACCTGGTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 874 | GGGTCTGAGTCCATAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 875 | GTTTCTACATCGATTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 876 | TGACTAGGTCAGGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 877 | CATTCGCGTTCCCGAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 878 | ACATCAGAGGCATTGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 879 | TTCTCAAAGTGTACCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 880 | AGCTCCTTCGGAGCAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 881 | CAGCCGACACGACTCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 882 | CGTCACTAGTACGACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 883 | CACAGTAGTATAATGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 884 | CATGGCGTCAGTTTGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 885 | TACACGAAGATAGGAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 886 | TGGGCGTCACGTAAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 887 | ATCTGCCGTCTGCGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 888 | GGTGCGTCATTTCAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 889 | GAGCAGAAGGGTTCCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 890 | AGACGTTCAAGCCATT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 891 | AGACGTTAGCTGTTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 892 | AGCAGCCTCTGCAGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 893 | TAAACCGGTCGCCATG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 894 | ATTCTACCAACACCTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 895 | TATGCCCCAGTATGCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 896 | GGGATGAAGATCCTGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 897 | GTACTTTGTCTGCAAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 898 | ACAGCCGTCCTGTACC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 899 | GAGGTGAGTAAATGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 900 | CAGATCAGTCGGCATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 901 | ACCAGTATCATGCTCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 902 | TTGTAGGAGGTGACCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 903 | TGCCCATAGCTTTGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 904 | AACTCAGGTCTCTTAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 905 | GTCATTTGTCTAGCCG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 906 | AAAGTAGGTCCCGACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 907 | CCATGTCAGATGTTAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 908 | GGTATTGTCTACGAGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 909 | CGTGTAACAATCTGCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 910 | CGGAGCTTCACGATGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 911 | TCTGAGACAAGTCATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 912 | ATCATGGTCTGTCTAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 913 | GCTGCTTTCATCTGTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 914 | TCTGGAAAGCAGGTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 915 | GAATAAGCAGCGATCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 916 | CCACCTAAGACTTGAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 917 | CAGTCCTGTTTCGCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 918 | TATGCCCCAGCGTTCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 919 | TGAGGGAAGCCTTGAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 920 | TTCCCAGCACTAGTAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 921 | CTCGAAATCAAGAAGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 922 | GATGAAAAGAGGTTGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 923 | GACACGCAGGCTAGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 924 | CTTGGCTAGACCCACC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 925 | CGGAGCTAGCCAGGAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 926 | TACGGTATCGCGATCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 927 | TGTGGTAGTCGCGTGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 928 | GACGTGCTCATGTCTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 929 | GTGCAGCGTTCAGGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 930 | GACTAACCAAGTTCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 931 | CGAGCCAAGTCTCCTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 932 | AAGCCGCTCCGCAGTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 933 | AACTCAGCAAAGGAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 934 | CCTTCCCCATGCAATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 935 | GTTCTCGCAGGCTCAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 936 | CTGCCTAGTCTAGTGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 937 | CATGGCGGTCAAGCGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 938 | TCCCGATGTCCTAGCG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 939 | GACTACAAGTGGGTTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 940 | GCGCAGTAGCGCCTCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 941 | CCGTTCAAGGAGTCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 942 | GTCAAGTAGTGACTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 943 | TTCGGTCTCAGTCAGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 944 | ACGATACGTCTGATTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 945 | AGCTCTCCACAGACTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 946 | GCAGTTAAGTGGCACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 947 | ATAGACCAGACGCACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 948 | ACTGTCCCACAAGCCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 949 | AGCAGCCGTCAGCTAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 950 | ATAACGCGTGTTGAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 951 | GCAATCAAGAGTAAGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 952 | CAACTAGGTGTCAATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 953 | TACCTATTCGTCCGTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 954 | GTAACGTGTGGTGTAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 955 | TTGAACGGTTTGTGTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 956 | CTCTAATGTTCGTTGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 957 | CTAAGACTCACAGTAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 958 | TGGACGCTCCTTCAAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 959 | ATGAGGGCAGGCAGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 960 | TCAGATGGTGTAAGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 961 | TACCTATGTGTCCTCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 962 | TTCTTAGAGGCTAGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 963 | GAACCTATCCGTCATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 964 | CATATTCAGTACGCCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 965 | GGAATAAGTCACACGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 966 | GGGACCTTCCAGAAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 967 | GTTACAGCACTCTGTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 968 | CATGGCGAGCGTCTAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 969 | GTCACAAGTAATCACC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 970 | AGGTCCGGTTCGGCAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 971 | ATGGGAGCACGAAATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 972 | CATCAAGTCAACACGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 973 | CGCCAAGGTCTGCAAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 974 | CACACTCCACATTTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 975 | TACGGGCCAGACAAAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 976 | CCCATACCAAAGCAAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 977 | CTACGTCAGGGATCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 978 | CAAGGCCCATCTATGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 979 | CGCTTCATCTTGTACT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 980 | CTCGAGGCATAGTAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 981 | CACCACTTCAACGGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 982 | GAGTCCGCAGCTGTTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 983 | GGAACTTAGATGTCGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 984 | CCTAGCTAGGCAGTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 985 | GATCAGTAGTCCGGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 986 | GGCGACTGTCCATCCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 987 | AAGGCAGAGTTCCACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 988 | GTCTTCGAGTGCTGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 989 | AATCGGTTCACTCCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 990 | CTGATAGTCTAGCACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 991 | CAGCGACGTGACTCAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 992 | ATCCACCTCCGCATAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 993 | CTAATGGGTCAAAGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 994 | TTCTTAGGTTGAGGTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 995 | ACGAGCCGTAAACCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 996 | TAAACCGAGGCTAGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 997 | GACTACAAGCCTATGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 998 | CGTTCTGCAAAGGAAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 999 | CGTCTACCAAACTGCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1000 | AGGGAGTAGAGACTAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1001 | GACGTGCTCCCTAACC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1002 | GGAAAGCGTCTACCTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1003 | CGTCCATCACTTAACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1004 | AAGACCTTCGTAGGTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1005 | CTACACCGTAGGGACT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1006 | ACAGCTATCGTTTAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1007 | CTCGGAGAGCACACAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1008 | TGAGCATCAGTAACGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1009 | GCGCAACCAACACCTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1010 | GTTAAGCGTAGATTAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1011 | CGAGCACTCTATCGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1012 | ACGAGCCTCATTATCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1013 | CGAACATGTTCAACCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1014 | GCATGATGTCGAACAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1015 | GGATGTTAGATCCTGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1016 | AGATTGCTCCGCGGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1017 | TTAGGCACAGCTGTTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1018 | CTGATCCTCCCTCTTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1019 | AACTGGTAGACCTAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1020 | CAACTAGCACCTCGGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1021 | TCAGATGTCTCTGAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1022 | CACCAGGAGATATACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1023 | CGGGTCATCCGAGCCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1024 | CTACATTAGTCCGTAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1025 | TCAGGATTCTTGAGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1026 | TAGGCATGTGCCTGTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1027 | GACAGAGAGCTCCTCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1028 | TCGTACCTCGGAAACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1029 | TCTCTAAGTGTTGGGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1030 | CGCGGTACAAGTCATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1031 | AGAATAGAGCCATCGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1032 | GTATTCTGTAGCGCAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1033 | ACGAGCCGTCTTCTCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1034 | GTCCTCAAGGGTCGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1035 | CATCAGAAGCCAGAAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1036 | TAGTGGTAGTGTGGCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1037 | TGGTTCCTCCGCATAA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1038 | GGCGACTAGGATGGAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1039 | TGACTAGAGGCTAGCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1040 | CTGAAACAGTGGGATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1041 | CGTTGGGTCAACACTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1042 | ACATGGTCAATAGAGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1043 | TTTGGTTAGATTACCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1044 | GTGTGCGTCCTATGTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1045 | CCATTCGAGCACCGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1046 | CCATTCGGTGATAAAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1047 | AATCCAGCATCGATTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1048 | GTAACGTAGGACCACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1049 | ACGAGCCGTCCATGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1050 | GACCTGGGTCGAAAGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1051 | GCATACAGTGCAGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1052 | ATCTGCCTCCTCATTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1053 | TACTCGCCACAGGAGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1054 | AACACGTTCCCTTGTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1055 | CATGACAAGTGACTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1056 | CTTCTCTCAGGTCTCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1057 | TACCTATTCATACGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1058 | ACACCGGTCCCTCTTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1059 | CCTATTACATGTCCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1060 | TTAGTTCAGCAGGCTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1061 | TCACAAGAGTTGTAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1062 | AACACGTGTTCAGGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1063 | GACCAATCATGGTCAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1064 | ATCTGCCAGCGATATA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1065 | TCTGAGATCTGAGTGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1066 | TAGCCGGTCCATGAAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1067 | CCTACCACACTGCCAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1068 | AGGGATGAGCCACCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1069 | AGAGTGGCAGCTGCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1070 | TCGTACCCATTGGCGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1071 | CGCTATCGTCTCGTTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1072 | GACAGAGGTGGCAAAC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1073 | CGTTCTGAGACAAGCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1074 | TCACAAGGTCAATGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1075 | AGAATAGCAAGCCTAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1076 | ATCCACCTCTACGAGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1077 | TTTATGCGTCCGACGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1078 | AGAGCTTTCTGTGCAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1079 | GTGTGCGCACCTCGGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1080 | CCACCTAGTGTGCGTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1081 | TCAGCAAGTATATGAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1082 | CGTCAGGAGATCGATA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1083 | AGTCTTTAGCTAGGCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1084 | TCAGGTAAGACCTAGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1085 | ATCATGGTCGAATCCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1086 | AGGTCATTCCTACAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1087 | CTCGGGAAGCGTCTAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1088 | GGGCACTCACAACGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1089 | ATGGGAGCAGGGTATG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1090 | GTTTCTAAGGATGGTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1091 | CATGGCGGTGCACTTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1092 | CACCTTGAGGACATTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1093 | CACACCTAGAAGGACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1094 | GCATGTATCCCGACTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1095 | GGGAATGGTACCGCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1096 | ACTGAGTAGTGTACCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1097 | CACACCTGTGTATGGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1098 | ATTATCCTCTGACCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1099 | AAGCCGCGTTCATGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1100 | CACACTCGTTCACGGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1101 | CATTATCCAGGGTATG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1102 | TGAGCATAGAAGGACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1103 | CATGACACATGCAATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1104 | ACATCAGCACGCTTTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1105 | CGTCACTTCCTTAATC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1106 | ATGGGAGGTTCCAACA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1107 | CAGAATCAGGAGTCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1108 | GTGTGCGCAGGATTGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1109 | TACACGACACGAGGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1110 | CTCGGGACAATGAAAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1111 | ATAAGAGTCCGCGCAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1112 | AGAATAGCATGCCCGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1113 | ACTGTCCTCAATCACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1114 | CACAGTACAGAGCCAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1115 | GCGCAACTCTCGAGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1116 | CAACCTCAGAGTCTGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1117 | TTTGCGCAGGCGCTCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1118 | TCCCGATCAATTGCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1119 | CTAAGACTCTGTCTCG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1120 | ATGGGAGCACCGCTAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1121 | GCGCGATGTCTTGCGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1122 | TGAGCCGTCCTCAACC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1123 | GGTGCGTCATTCTTAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1124 | CACTCCAGTTCCGGCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1125 | TCAATCTCACCATGTA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1126 | GAATAAGAGTGTTAGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1127 | TACCTATGTGCAGACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1128 | ATTATCCAGATGTGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1129 | TGAGAGGGTGGCTCCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1130 | GCCAAATTCTACCAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1131 | CGTAGGCAGGCCCTCA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1132 | CTACCCACAACCGCCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1133 | TCAGCTCGTAGAAGGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1134 | AACTCTTCAGCGTAAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1135 | ACTTTCAAGTGCCATT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1136 | CTGCGGAAGATGTTAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1137 | CGGCTAGCAATGAAAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1138 | GTAACTGTCATGTCCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1139 | ACGCAGCCAGGGTACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1140 | CTACACCAGGGCTCTC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1141 | ACATACGCAGGTCCAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1142 | CTTCTCTAGCTGCAAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1143 | GGGACCTAGGGCTTGA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1144 | CGATCGGGTAACGACG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1145 | CAGCAGCAGCTATGCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1146 | CTACGTCGTGGCGAAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1147 | CGAACATTCGCCATAA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1148 | TACTTGTAGTGGGATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1149 | TGCGTGGAGCTTTGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1150 | CCACTACCATGGGAAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1151 | GTCACAAAGATATACG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1152 | AGGGTGACAGCGAACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1153 | TGAGAGGGTGATGCCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1154 | GTAACGTTCGTGACAT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1155 | GCGCAACCAGGCGATA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1156 | GTCAAGTCAAGCTGTT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1157 | GACCTGGAGGCCGAAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1158 | CGACTTCGTGTGCGTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1159 | AAACGGGTCTCTGTCG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1160 | TACACGATCAGCGATT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1161 | TCTTTCCGTGTCAATC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1162 | TCCACACGTATCGCAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1163 | GCTTCCATCCTTGCCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1164 | CATGCCTGTAAACACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1165 | TTCTCCTAGCTGGAAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1166 | TCTTCGGCATACAGCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1167 | TTAACTCGTCTCGTTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1168 | ATTTCTGTCGCTGATA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1169 | AACTCCCTCGCCAGCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1170 | TTAGGACTCATTTGGG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1171 | GTCTTCGTCATGTCTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1172 | GATCGATTCAACCATG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1173 | GCATACAAGATAGGAG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1174 | TCGCGAGCAGTTAACC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1175 | GCGAGAATCGCTTAGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1176 | GAACATCAGTAGCGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1177 | GAATAAGAGTGCTGCC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1178 | GACGTGCCATAACCTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1179 | CCTAGCTAGGCTAGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1180 | CCTAGCTCAAAGGAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1181 | TCTTTCCTCGGACAAG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1182 | GGACAGAGTGATGATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1183 | GTACGTATCTTGGGTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1184 | GCAGCCACATGCTGGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1185 | GTGGGTCAGGGATACC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1186 | CCAATCCGTAAATGAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1187 | TCAACGAGTCGAATCT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1188 | GGTGTTACAAGAGTCG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1189 | CTGCGGATCCAGATCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1190 | GATGAGGTCTAAGCCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1191 | TGGTTAGGTAATAGCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1192 | ACTATCTAGCGTTTAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1193 | CCTCTGAAGATCGATA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1194 | CAAGAAACACCCATTC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1195 | TTAGGACCATGCCCGA | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1196 | AAGACCTCAGTATCTG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1197 | GACCTGGCAGGAATGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1198 | ACATCAGGTGGTCCGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1199 | GCTGGGTAGTTTGCGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1200 | GGGATGATCTGCCCTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1201 | CTTAGGAGTCGGATCC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1202 | AAGTCTGAGTTCCACA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1203 | TTAGGCAAGGAACTGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1204 | GGGATGATCCGCAGTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1205 | AGTGTCACAGTCGTGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1206 | GGGACCTAGATCGGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1207 | ATGTGTGTCGAATGCT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1208 | CCGGTAGAGGTGTGGT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1209 | GAGGTGAAGGCGATAC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1210 | GCACATATCTCTTGAT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1211 | CATATGGTCACATAGC | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1212 | ATCTACTGTACTTCTT | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1213 | CAGTCCTGTACACCGC | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1214 | TCAGCAAGTCGGCTCA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1215 | CGTCTACTCAGTGTTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1216 | ACCTTTAGTGCCTTGG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1217 | CATCAAGTCTCGCTTG | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1218 | CGGCTAGAGAGACTTA | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1219 | GTCAAGTGTCGAGATG | ERX6700457 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN219 | nan | |
| 1220 | CATGCCTCAAAGGCGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1221 | TGCCAAATCACGCGGT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1222 | CCTCTGACAGTACACT | ERX6700458 | ERP132587 | testis | Differentiated_Spermatogonia | nan | nan | nan | CL:0000020 | spermatogonium | missing child term | SN224 | nan | |
| 1223 | CGTTCTGTCCGATATG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1224 | TTGACTTGTCTCTTTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1225 | CAGGTGCGTATAGGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1226 | AGCTCCTTCGCGTAGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1227 | GGACAAGCATAACCTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1228 | TCTCTAACAGCTCGCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1229 | CAAGGCCAGAATCTCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1230 | AACCGCGCAGCTGTAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1231 | CTCGAGGTCAGCGACC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1232 | CAGCATATCCGCAAGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1233 | TGCTGCTCACATTTCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1234 | TATTACCAGCCAGAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1235 | AACCGCGTCGGCTACG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1236 | CATCGAATCGGAATCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1237 | TTGTAGGTCAACCATG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1238 | GCATACATCGTCTGAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1239 | CCTTCGACAGGTGCCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1240 | ACATGGTCACAACTGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1241 | CGTGTCTGTCACTTCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1242 | GGCTGGTTCCCTTGCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1243 | GACGGCTGTGCAACTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1244 | CCTAAAGGTCTACCTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1245 | ACCAGTAGTATTAGCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1246 | GTACGTAAGGACTGGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1247 | ACCCACTGTAGCGTGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1248 | CGCTTCAAGTCCATAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1249 | CACACTCTCAGGTAAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1250 | GAACCTAGTCTCAACA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1251 | AACCATGCAGGACGTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1252 | CCCATACCAAGTAATG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1253 | CGGGTCATCTAACTGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1254 | CTGAAACCACACCGCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1255 | TAGACCAGTCATATGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1256 | TAGCCGGAGACTGGGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1257 | TATCAGGAGCATCATC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1258 | TGGGAAGAGAACAATC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1259 | GTGCTTCAGATATGGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1260 | TCAGGTAGTCGGGTCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1261 | TACGGTATCTTCCTTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1262 | CCATTCGCAATGGATA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1263 | CGTGAGCTCGGTTAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1264 | AGACGTTAGAGCCCAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1265 | TGTCCCACAGATGGCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1266 | CAGCTGGCACTTAACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1267 | GCTCCTACATTCTTAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1268 | TTCTCAAGTGGCAAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1269 | GAGTCCGGTATGAATG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1270 | CTCCTAGAGGTCGGAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1271 | GACGTGCTCTGTCTAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1272 | GTAACTGTCATAAAGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1273 | CGTAGGCAGTAGCGGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1274 | CTCAGAAGTATTCGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1275 | AACTCAGCAGCGTAAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1276 | TGGACGCCACCTCGTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1277 | TACGGTACACGGTTTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1278 | CTGTGCTTCGAACGGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1279 | TGACTAGTCTTTACGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1280 | AGAGTGGAGATTACCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1281 | GCTGCGACACGGACAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1282 | CTGATCCCATTAGCCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1283 | GCTCTGTTCTTCGGTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1284 | TGCTGCTCATCAGTAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1285 | CGTTAGATCTCGTATT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1286 | TCAACGAGTGGACGAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1287 | GACACGCTCAGTGTTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1288 | CACAAACCAGCTCCGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1289 | TACCTATTCATAGCAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1290 | CTGCGGATCTGTTGAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1291 | CGAGAAGAGCATCATC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1292 | CGCGTTTCAGTATCTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1293 | CGAACATGTTCACCTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1294 | GGCTGGTTCCTTTCTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1295 | TTTACTGGTGGTTTCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1296 | AGGGTGATCGAGAACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1297 | CTCTAATAGCACGCCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1298 | TTAACTCGTTTGACAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1299 | CGAATGTAGGGAAACA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1300 | AAGCCGCAGTGCGTGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1301 | GTGCGGTTCTTCAACT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1302 | CGTCAGGGTCTTGATG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1303 | GATGCTACAGCCTTTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1304 | AGCTTGACAGATTGCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1305 | GCTGCGACAGTCACTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1306 | TACGGTAGTTGTCGCG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1307 | TTGTAGGTCGTTGCCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1308 | AACACGTCAATGGACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1309 | GATGAAAGTTGAACTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1310 | CACCTTGTCAGCAACT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1311 | GGAACTTTCTGATTCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1312 | TACACGATCGAGCCCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1313 | AGGGAGTCATGTAGTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1314 | GTTCATTGTGAGGGTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1315 | TCGTAGAAGGGAAACA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1316 | CAGCTGGCACAGATTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1317 | GAAGCAGAGGAGTTTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1318 | CACCACTAGATATGCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1319 | TGACGGCAGGCAGGTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1320 | ATCCACCGTTATTCTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1321 | TCATTTGGTCAGAATA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1322 | CGGCTAGCAAGCCCAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1323 | AATCCAGCAAGCCGTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1324 | TGACTTTAGGGTGTTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1325 | GAAACTCGTAGAGGAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1326 | GACGTTATCCGTCAAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1327 | GTCTCGTCAGCGTTCG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1328 | ACCAGTAAGGTAGCCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1329 | GCGCGATCACCAGTTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1330 | CGTGAGCAGTGCCAGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1331 | CCACGGATCTCCAACC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1332 | TTCGGTCCAGCGATCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1333 | CCCAATCCAAACGCGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1334 | CGCGGTAGTAAGAGGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1335 | TGAGGGAGTGCTCTTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1336 | GGTGAAGCACCCTATC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1337 | GTCCTCAAGCGATCCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1338 | TACAGTGTCGACGGAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1339 | ATAACGCTCCCAGGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1340 | ATCATGGGTGACAAAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1341 | GCTGCAGTCTAGCACA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1342 | CGCTTCAAGTGGAGTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1343 | CATTATCAGGCTCAGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1344 | GGAGCAACACTGTGTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1345 | AGCGGTCAGACGCAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1346 | TGCTGCTGTGAAGGCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1347 | CTCGGGAGTTCTCATT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1348 | TGAGAGGAGTGTACTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1349 | AAACCTGAGAAAGTGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1350 | ACTGAGTTCTACCAGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1351 | TAAGAGATCCGCTGTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1352 | TGGCGCAAGGCTACGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1353 | AGAGCTTTCCGCGGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1354 | AACCATGAGTAGGCCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1355 | GTATTCTAGACACTAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1356 | GTCATTTGTTCCACGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1357 | TTAGGCACAGGTTTCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1358 | CTAGTGATCCACGCAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1359 | GCAAACTGTCGCCATG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1360 | TTGGCAATCTTGTACT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1361 | CATCGGGAGATCACGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1362 | CTCGGGATCTGCAGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1363 | ACGTCAAAGCGGCTTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1364 | CGTAGCGAGCCCAATT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1365 | TGCCAAAAGACAAGCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1366 | CGTAGCGGTGCACCAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1367 | TTAACTCTCCGATATG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1368 | ACGGGCTGTGTTTGGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1369 | ACTGCTCAGTACGTAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1370 | CGGACTGCATCCGGGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1371 | TTCTTAGCAAGTCATC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1372 | TTGACTTCAGCCAGAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1373 | CCTATTAGTGCACGAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1374 | TAAACCGGTAGCTGCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1375 | TGCACCTCATGACATC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1376 | CCGTGGAAGGCTCATT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1377 | CAGCATAAGGTGGGTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1378 | CACACAAAGGATCGCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1379 | CACAAACTCTGCTTGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1380 | TACCTTATCAAAGACA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1381 | TCAACGATCAATCTCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1382 | CGATCGGCACCCATTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1383 | TCAATCTGTCATACTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1384 | GCGCAACTCTTCAACT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1385 | ACCCACTAGAGATGAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1386 | CATCGAAAGGGATCTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1387 | TCGCGTTCACATTAGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1388 | GGACAGATCCCTAACC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1389 | GTTCGGGGTTACGGAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1390 | CTCGAGGCACGTGAGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1391 | GTATCTTTCCGTCAAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1392 | TGACTAGCAGCCTGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1393 | CTACGTCGTCGAGTTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1394 | GAACGGATCGTACCGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1395 | GACTAACGTAGCGCAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1396 | CATCGGGAGATGCCTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1397 | CACATAGTCGTTTATC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1398 | CAGTAACGTTCCGTCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1399 | TGTATTCCACCTGGTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1400 | TACTTACGTCTCTTTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1401 | CTGTTTAAGGGAGTAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1402 | TTTGGTTGTACTTCTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1403 | CCCAATCAGTTCGCGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1404 | GACCAATTCTCGCTTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1405 | GTTCATTAGCCGTCGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1406 | AAAGCAATCAGTCAGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1407 | GAATGAATCGTCCGTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1408 | GGGCACTTCAGCGACC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1409 | TCAGATGGTTTGGGCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1410 | AGACGTTTCCGCAGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1411 | TCCCGATCATGCCCGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1412 | AGTCTTTAGAGCCTAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1413 | AGATTGCAGCGTGAAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1414 | CAACCAAAGCTAGCCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1415 | TCCCGATTCGTCTGCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1416 | TAAACCGTCTGTCAAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1417 | CGGACTGGTCATTAGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1418 | CGCGGTAAGTGTGAAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1419 | TGAAAGACAAAGTCAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1420 | GTCTCGTCAAGGTTCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1421 | CAGCATATCTGCCCTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1422 | CAGCATATCACAGTAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1423 | CAAGTTGGTCAGGACA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1424 | AGGGTGACACCAGATT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1425 | CCGTGGAAGAGATGAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1426 | GTTAAGCGTACAGCAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1427 | TCTGAGAAGATGCCTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1428 | GACGTTACACAGGAGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1429 | GATGAGGTCTTGGGTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1430 | AGGTCCGAGGACATTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1431 | CTCCTAGCACGGTAGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1432 | ACATACGCATCACCCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1433 | TGTTCCGCATGAGCGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1434 | GTGAAGGAGTACGCGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1435 | TATCAGGTCTTCTGGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1436 | TGCTACCAGCTGAACG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1437 | TCGCGAGTCTGTCAAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1438 | TGGCCAGCAAGGACTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1439 | GGACAAGAGAGGTTGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1440 | TATTACCCAAGAAGAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1441 | TACCTATAGGTGTTAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1442 | AAGCCGCCAGTAAGAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1443 | TTAGGACGTTAGGGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1444 | CAGATCAAGGGTCGAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1445 | TACTTACTCTGCTGTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1446 | GAATGAATCGCGCCAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1447 | CTCTAATCATTGTGCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1448 | CACACTCGTTCCACGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1449 | GATCGTACACAGATTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1450 | GTGTTAGCAGCCAGAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1451 | TATGCCCAGGGAGTAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1452 | ATAGACCGTCCATGAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1453 | ACGGCCATCGAACGGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1454 | TCTTCGGCAGCTCGCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1455 | ACGAGGACAAGCGCTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1456 | GAAACTCAGCAGGCTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1457 | CATCAAGAGTCCCACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1458 | AGCATACTCCAAGCCG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1459 | GAAGCAGTCATAGCAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1460 | CTGGTCTCACGCTTTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1461 | CATATTCTCCTAAGTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1462 | ACGGCCAAGGCTACGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1463 | CCTCTGAGTGATAAGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1464 | TATGCCCGTGTGTGCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1465 | GTCCTCACATACCATG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1466 | GTCCTCACACTTAACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1467 | TGATTTCCACTTCTGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1468 | ATCTGCCCATGGTTGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1469 | CCAATCCAGTTGAGAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1470 | CAGAGAGGTATAATGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1471 | TACGGTACAGCTGCAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1472 | ACGTCAACATAAGACA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1473 | CTGGTCTAGCACGCCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1474 | CATTCGCTCATTGCGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1475 | CTCGGGAAGGCAGGTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1476 | TTGTAGGTCGTCTGAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1477 | CACAGGCTCGTTTAGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1478 | AGGGATGTCTACTTAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1479 | TCCACACCAAGCTGTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1480 | AGCCTAATCCTGTACC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1481 | TACTTGTGTATCTGCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1482 | TACCTATGTTCTGGTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1483 | TTTGGTTCAGATTGCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1484 | AAAGCAAAGCAGACTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1485 | GCTGCTTAGATAGCAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1486 | AAGGTTCAGCACGCCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1487 | CACAGTAGTCTCCATC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1488 | AGATCTGGTGCACCAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1489 | ACACCGGGTCCATGAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1490 | AAGACCTCAGCTGGCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1491 | AACTCAGGTTATCACG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1492 | GCGCAACTCTGCGTAA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1493 | TGTATTCTCAACACCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1494 | CCCAGTTGTAGAGTGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1495 | GGCTCGATCGTTGCCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1496 | CGATCGGGTCTGCAAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1497 | TCTGGAACAATAGCGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1498 | GATCAGTTCAAACGGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1499 | AACGTTGCAGCCTTGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1500 | TGCTACCCATTCCTGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1501 | GACCAATGTAAGTTCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1502 | CCTAGCTAGCCTCGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1503 | TAAGAGATCACTCTTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1504 | GCATACAGTCGTTGTA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1505 | CTGAAACAGTGAATTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1506 | TGGCTGGCATCTATGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1507 | ACGGGCTTCAGGCGAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1508 | AACTTTCCACATCTTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1509 | GCGAGAATCGGTTAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1510 | CCGGTAGCAGTGAGTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1511 | CCAATCCTCCAAACAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1512 | AACTTTCTCTGCAGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1513 | GTCGTAACACAGGAGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1514 | CACAGTAAGTGCGATG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1515 | ATTTCTGTCAACGGCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1516 | GGACGTCAGCTTTGGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1517 | TCAGCTCAGCTTTGGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1518 | TCAACGAAGCTACCGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1519 | CTGAAGTCACTGAAGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1520 | GACGCGTGTCAGGACA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1521 | TCCCGATCATGTCCTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1522 | TGCCAAAGTTCCGTCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1523 | CAGATCAGTTAGATGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1524 | CCCATACCATATGCTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1525 | ACGGAGAGTTACGCGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1526 | ACATGGTTCCATGAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1527 | ATCCGAAGTCTACCTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1528 | CTGCGGAAGCTGAAAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1529 | AAGGTTCCACCCAGTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1530 | AAAGTAGAGACACGAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1531 | AGCTTGAAGTGTTAGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1532 | AACTCCCTCACTTCAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1533 | TCGGTAACAGACAGGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1534 | GTACGTAGTTCGTTGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1535 | TGCACCTAGAGGGATA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1536 | GGGTTGCAGTCCTCCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1537 | GTTAAGCAGATATGCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1538 | AGGTCATTCCCACTTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1539 | GGACATTGTAAGAGGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1540 | GCGCGATCAGCCTTGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1541 | TCGTACCTCCAGGGCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1542 | TTCGAAGGTCGAACAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1543 | TGCACCTAGCTGAAAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1544 | CATTCGCCATTCTTAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1545 | CATTCGCTCGTACCGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1546 | CGGACACGTCGGCTCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1547 | GCAAACTTCCACTCCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1548 | AACTGGTTCTCCTATA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1549 | TTAGGCACAGACGCCT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1550 | AGAATAGAGGTGCAAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1551 | GCATGCGTCGAATGCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1552 | AGAGTGGAGGATTCGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1553 | CTCATTATCCTATGTT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1554 | CGTAGCGTCTCGAGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1555 | CTCTAATGTAGGACAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1556 | CAAGTTGCACGTGAGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1557 | CATATTCCATGACGGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1558 | ACTGTCCCAAGCGATG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1559 | CATCGAACACATCCAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1560 | GATCAGTGTGTATGGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1561 | GGACGTCTCTGGCGAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1562 | GTTTCTATCAGCACAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1563 | TTTCCTCTCCACGAAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1564 | TATCTCACATTACGAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1565 | GTGCAGCAGCTGAACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1566 | CATGACAGTTGGTGGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1567 | TACCTTATCTCGATGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1568 | GATGAGGAGAGTACCG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1569 | TGACGGCAGGCAAAGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1570 | ACACCGGAGATCGATA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1571 | CTCTACGGTTTGCATG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1572 | CTAGAGTTCCGCATCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1573 | GCATGCGTCTGAGTGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1574 | TGACTAGTCCTTGACC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1575 | CTCAGAAAGGGCATGT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1576 | TGGCCAGTCGACAGCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1577 | ACTGAACAGTTGAGAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1578 | TATCAGGGTCCTCTTG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1579 | TCAGCTCGTGCCTTGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1580 | TGAAAGAGTGACAAAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1581 | CGAGCCACACGTTGGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1582 | CTTTGCGCACATCTTT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1583 | TACTTGTAGACACTAA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1584 | ACCGTAATCACAGTAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1585 | AACACGTGTTCCACTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1586 | TGCCAAAAGATGCGAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1587 | CTTAGGAAGTCGCCGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1588 | CTACGTCTCCTCCTAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1589 | ACCCACTGTCTAGTCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1590 | AGCTCTCAGATGAGAG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1591 | GGAGCAATCTCCTATA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1592 | TTTGCGCTCCACGTTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1593 | CATGACACAAATCCGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1594 | CGTCCATAGTTGAGTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1595 | AGTAGTCCATCCAACA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1596 | CGCTTCATCGTTACGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1597 | GCTTCCACAATCACAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1598 | TGAAAGAAGTACGCGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1599 | CTCTACGGTTATGTGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1600 | CTGATCCTCTGTCCGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1601 | TCAGGTACATCTACGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1602 | GTAACGTTCCGCAAGC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1603 | TGAGCATGTAACGACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1604 | GAGTCCGGTAAACGCG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1605 | CGTGTCTGTGGCGAAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1606 | ATTGGACCATTTCACT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1607 | TGTATTCGTCATGCCG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1608 | CATATTCGTTGGACCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1609 | TACGGTAAGAATGTTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1610 | CTGCGGAAGCAGATCG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1611 | AGATCTGTCACAATGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1612 | CAGAATCAGCGTGAAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1613 | TGAAAGATCGTTACGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1614 | AAGCCGCCAGTCAGCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1615 | TGAGGGATCAGTGTTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1616 | TGCTACCCAAGACACG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1617 | TCTTTCCTCCTATTCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1618 | TCGTACCCAACACCCG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1619 | CTTTGCGTCAGTTTGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1620 | CTACCCATCACCTCGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1621 | CTCGTACCAACCGCCA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1622 | GACCTGGAGTGAACGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1623 | GTAGGCCGTTGTGGCC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1624 | TAAGAGATCTTCCTTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1625 | TCGGTAACAAGTCATC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1626 | ACTGCTCGTAACGTTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1627 | GTAACGTGTCTTTCAT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1628 | CAGCGACTCCAGAAGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1629 | TTTGGTTGTGAGGGAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1630 | AACTCTTAGATGTAAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1631 | TAAGTGCTCGCGATCG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1632 | GGGACCTCATACAGCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1633 | AAACCTGCACTAGTAC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1634 | GAACATCAGTTAACGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1635 | CGCTTCATCTTTAGTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1636 | CGGTTAAGTAAGGGCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1637 | TGGCCAGGTCGAGATG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1638 | TGGGAAGTCTCGCTTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1639 | CACATAGCAGGAATGC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1640 | GTATCTTGTCTGATTG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1641 | GCAGCCAGTAGCGTGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1642 | GCTTCCAGTCATCCCT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1643 | AAAGCAAGTTCTGAAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1644 | GTGTTAGTCATCATTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1645 | AAAGTAGCACTCTGTC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1646 | CTCTGGTAGACAAGCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1647 | GACGTTAGTCAAAGAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1648 | ATGGGAGAGGCGTACA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1649 | ACCTTTAAGTTAGCGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1650 | GTCACGGTCATCTGCC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1651 | GTACTTTGTTGTGGAG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1652 | CCTAGCTGTGTCTGAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1653 | TTGAACGTCCACGTGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1654 | GACTAACAGACAAAGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1655 | GGACGTCAGGTGACCA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1656 | ATCTGCCCATCGGACC | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1657 | TGGGAAGGTCCCTACT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1658 | TATGCCCCATGCCTTC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1659 | TCAGGATCATGCGCAC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1660 | ACTTTCAAGTATTGGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1661 | CCCAGTTTCTTCAACT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1662 | TTATGCTCATGGATGG | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1663 | TGAGCATTCTAACGGT | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1664 | TGACAACAGACCCACC | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1665 | ATAACGCTCACTTCAT | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1666 | CTAGTGAAGTACGCGA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1667 | TCTCATAGTTGTTTGG | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1668 | CTGATAGGTACCGTTA | ERX6700458 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1669 | ATCTGCCGTGAAATCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1670 | TTCCCAGGTCTGATTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1671 | GGAATAATCAAAGTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1672 | GATCTAGGTTGGTGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1673 | CAACCAATCGTGGTCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1674 | GTGAAGGAGTGTACGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1675 | CATCAAGCATGCTGGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1676 | ACGCAGCGTCCAACTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1677 | CTCATTATCACCCTCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1678 | CACATTTTCCTAGTGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1679 | TACACGACAAGTCATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1680 | TCAGCAAAGTTGTCGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1681 | TGCTACCTCCAGAGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1682 | TCATTTGGTATAGGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1683 | GAGGTGAAGACACTAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1684 | GCCTCTATCTGCAGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1685 | ACGGGCTTCAACACTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1686 | TTTGCGCAGTGAACAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1687 | ACATGGTTCGTGACAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1688 | GGGATGAAGGTAGCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1689 | TGATTTCGTACAGTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1690 | TCTGGAAAGCTAGGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1691 | ATTACTCCAAACTGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1692 | GCCAAATCAAACTGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1693 | CACCTTGCAGTCCTTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1694 | TGCCCATAGATAGGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1695 | CATGGCGAGGAGTTGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1696 | GAATGAACAGCCAGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1697 | CTCGTACTCTCTGCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1698 | TGCTACCAGGATGCGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1699 | TACTTGTTCTTCATGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1700 | GATCGCGAGGGTTTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1701 | TCGCGTTCAATAACGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1702 | AGAATAGCACCTGGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1703 | GGCTCGAAGCACGCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1704 | AATCCAGAGTGTGAAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1705 | CAAGTTGCACTTGGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1706 | TCAGCTCCATGAACCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1707 | GATGAAACAAAGGCGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1708 | AGAATAGAGTGTACCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1709 | CGTCCATAGCTTTGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1710 | GTACGTATCATGCTCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1711 | ACGGAGATCTGGTATG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1712 | CCTAAAGTCCGCATCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1713 | TCCCGATTCTTCAACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1714 | CATCAGATCAGTGTTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1715 | CTCGGAGGTGCGCTTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1716 | ATGCGATAGCCCTAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1717 | CCTTCGACACCCATTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1718 | CACCACTCACGCGAAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1719 | AACTCCCTCTCATTCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1720 | ACTTTCAGTGTGCGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1721 | TACAGTGAGGAATCGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1722 | AAGCCGCGTATCACCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1723 | GTCTCGTTCTTTACAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1724 | AAATGCCCATTCTTAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1725 | TGAAAGATCAGAGACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1726 | ACTTACTCAGGGAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1727 | CGCTGGAAGAGGACGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1728 | TTTATGCAGAAGGTGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1729 | AGGGAGTCAACACGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1730 | CAGCCGAGTCCAACTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1731 | CCTTTCTGTCCGCTGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1732 | CTCGTACAGTTAAGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1733 | CCCTCCTAGTTAGGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1734 | CTGATCCGTCTGATTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1735 | AGACGTTAGACGACGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1736 | AACGTTGCATAGAAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1737 | ACATACGCAGACAGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1738 | CACCTTGAGTCCATAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1739 | GTTCTCGGTTAAAGAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1740 | GGCGACTCACCGAAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1741 | TCGCGTTAGTCCGTAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1742 | GCACTCTCAGTAAGCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1743 | GTATCTTTCGAATCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1744 | TGCTACCAGCTCTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1745 | AGCTCTCCAGCTGCAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1746 | GGGCACTAGAAACGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1747 | CAGGTGCCAGACAGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1748 | GTCACGGTCATCATTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1749 | CTAGTGATCATCATTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1750 | CGGCTAGGTCAACATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1751 | AAGGAGCCAGGTTTCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1752 | GTTCGGGGTTAAGATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1753 | AGGGATGTCCCATTTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1754 | CATCGAACATAAGACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1755 | GCATGTATCACTTACT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1756 | TGCTACCTCATCGCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1757 | GGTATTGCAAGTTAAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1758 | CTCGTACAGTCTCGGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1759 | ATGAGGGTCTACGAGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1760 | AATCCAGCATTCACTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1761 | AAAGCAAAGTCGTACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1762 | GCATGATCATGTCTCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1763 | AGCTCTCGTGGTTTCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1764 | CAGGTGCTCCTCGCAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1765 | TACGGATGTTTGGCGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1766 | CCTTCCCTCATAACCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1767 | GTGTTAGAGCGATCCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1768 | TGCTGCTTCCTTTCGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1769 | CGGAGCTCAAGCCTAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1770 | CGTCCATCAAGAAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1771 | GGACAGATCAAACAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1772 | TTAGGCACAAAGGAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1773 | GCTCCTATCATATCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1774 | GGTGCGTTCCACGTGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1775 | CAGCTAATCCGAGCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1776 | TTCTACATCTTGGGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1777 | GTACTCCGTTCTGTTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1778 | ACAGCTAAGGGATACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1779 | CCCAATCGTTGAGTTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1780 | AAACGGGAGATGCCTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1781 | GAGCAGAAGGTAGCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1782 | CCTTCGAAGTTACGGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1783 | CTTAGGAGTCTTCGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1784 | ATTTCTGTCCCAGGTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1785 | TGATTTCTCCTTGACC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1786 | GCATGCGAGGACACCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1787 | AAACCTGAGACCTTTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1788 | TGACGGCCAGGTCCAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1789 | TCTGGAACACCTCGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1790 | GGCCGATCACACATGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1791 | CTCGAAACATCGACGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1792 | GTCACGGCACGAGAGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1793 | TGGGAAGGTGAGTATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1794 | GCGCAGTAGGAATCGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1795 | TACTTACCACCGAATT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1796 | TCACAAGAGTGACTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1797 | GTGCGGTAGGATGGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1798 | AAGTCTGCACTTACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1799 | CCGTGGAGTATAATGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1800 | GAAGCAGTCAGTACGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1801 | GAAGCAGTCGCAGGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1802 | CTCGAAACATGGTCTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1803 | TACACGACAGCTATTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1804 | CCCAATCAGTTTGCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1805 | CCGTGGAAGCACAGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1806 | GTACGTACATCCCATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1807 | GTAGTCACATCGGAAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1808 | CAACTAGAGATGTCGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1809 | CGATTGAAGCAGGCTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1810 | TACCTTATCCTAGTGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1811 | CATCGGGGTTATCCGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1812 | AAAGTAGGTCATTAGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1813 | TACGGATCACGCCAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1814 | GAACGGAGTAAACGCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1815 | GTCTTCGTCTTTCCTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1816 | GGAAAGCTCAGCGACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1817 | CGGGTCAGTTCAGCGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1818 | CTCGTCAGTTTCCACC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1819 | GTAGGCCTCATGTAGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1820 | GTCTCGTGTGCACTTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1821 | CAGTCCTAGTTCGATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1822 | TCTCATAAGTCAATAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1823 | CCTCTGACAGCTATTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1824 | CGATCGGCACTCTGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1825 | GCTGCGAGTCAAAGCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1826 | TATGCCCGTCATTAGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1827 | GGAACTTGTGTGGTTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1828 | CTGCCTACAAGTAATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1829 | CGTAGGCGTCGAGATG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1830 | ACGCCAGAGCTATGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1831 | AGCTCCTTCTGGTATG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1832 | CCTTCCCGTCGACTAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1833 | ACGAGGAAGATCCTGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1834 | CGATGTAGTAAGTGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1835 | CTCGAGGCAAGGACTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1836 | CTCAGAAGTCATACTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1837 | CGCTATCGTCCGTTAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1838 | AGATCTGTCCGTAGGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1839 | GATCGTAGTGTAATGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1840 | TTTACTGTCCTGTACC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1841 | GTCTTCGAGTTAAGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1842 | AGCGTATAGAATGTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1843 | GACCAATAGATCACGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1844 | CCTATTATCCAAGTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1845 | CAACCTCAGGCCCTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1846 | AAGCCGCTCGATCCCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1847 | GTACTCCGTCGGCACT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1848 | TCTTTCCGTCGCATAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1849 | AAGGCAGGTTGAGGTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1850 | AGATCTGTCTGGTGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1851 | GTAGGCCTCTGGCGTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1852 | AGCGGTCGTTGCGCAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1853 | CGTTCTGGTCGAATCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1854 | CCGTTCATCTGGAGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1855 | ACCAGTATCCTTGCCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1856 | TCCCGATGTCACACGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1857 | CAACCAATCGCGCCAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1858 | TCAATCTCACATGGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1859 | ACGGGCTGTAATTGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1860 | ACGAGGATCAGTTAGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1861 | AACTTTCGTGATAAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1862 | AGAATAGGTTCCACAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1863 | TTCCCAGTCTTTACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1864 | GTCACGGCACGTGAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1865 | ACGCCAGCAAATTGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1866 | CAGCTGGCATGGTCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1867 | GCGAGAAAGCTAAGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1868 | TCCCGATAGAGGGATA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1869 | GACACGCCATGGGAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1870 | TTGGCAATCAACCATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1871 | GGCGACTAGTGGACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1872 | CTCCTAGGTGTCAATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1873 | AAGCCGCCAAGTACCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1874 | TCCACACGTTCCATGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1875 | GACAGAGCAGGTCTCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1876 | TGAGCCGCACACGCTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1877 | GTTCATTGTTAAGAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1878 | CCTATTACAGTCAGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1879 | CTACATTGTGTGGTTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1880 | AGGCCACTCTGGTGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1881 | CTGAAACAGACTACAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1882 | GGGAATGGTTATCGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1883 | GACGGCTTCGAGAGCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1884 | ACGGGCTAGAGGACGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1885 | CGCCAAGTCCATTCTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1886 | CACCACTAGTCTCAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1887 | CAAGATCTCGGCGGTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1888 | AAACCTGTCTATGTGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1889 | AAGCCGCTCGCTAGCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1890 | CTCTAATAGCATCATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1891 | GTGCTTCAGACGCTTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1892 | AAGGCAGGTGTCCTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1893 | TCGTAGAGTCTAAAGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1894 | TACAGTGCAGGGTACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1895 | GAAATGACAGACGTAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1896 | GGGAATGAGCGACGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1897 | CACCTTGAGGGAAACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1898 | CGTAGGCAGCCAGGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1899 | GGAATAAGTACCGAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1900 | CTCTAATAGGGTTTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1901 | CAGCAGCCACTAGTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1902 | ACGGGTCTCTGTCAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1903 | GTAGTCAAGGGAGTAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1904 | CCTACACCAAGCTGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1905 | ACGAGGACACCAGCAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1906 | CAGCAGCAGGAGTAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1907 | GTCACGGAGGCATGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1908 | GCAGTTAAGCCGATTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1909 | GAAATGACAGACAAAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1910 | TCAACGAGTAGCTAAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1911 | TGAGGGAAGCACACAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1912 | ATCTGCCGTCGCTTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1913 | GACTACATCGCCTGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1914 | CCCAGTTAGCCACGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1915 | AACTTTCCAATACGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1916 | ATTTCTGGTGAGGGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1917 | TACTCATTCCAAGCCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1918 | TCAGCTCAGTGTGAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1919 | CCGGGATGTAGGCTGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1920 | GCGCCAATCAACACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1921 | GGCAATTCACGGACAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1922 | GGGCACTCACTCGACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1923 | ATTTCTGGTTCCCGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1924 | CATATGGTCACCTCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1925 | GCTTGAAGTAGCGCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1926 | AACTCCCTCGAACTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1927 | ATCCACCGTGCAACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1928 | GATGAAAAGGTCGGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1929 | CCATGTCCAGCGTAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1930 | GATCGCGCATTCTTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1931 | CTAGAGTAGGAGCGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1932 | TCGCGTTTCCACGTTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1933 | AGGGAGTAGTCAAGGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1934 | AAAGATGCACGGTAAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1935 | CAGTCCTCAAGAAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1936 | CCACGGATCAGAGACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1937 | GGGACCTCACGTAAGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1938 | CTAGAGTAGTTCCACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1939 | CCTAAAGCAATCCGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1940 | GATGAAACAGACGCCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1941 | ACATACGGTGCAGACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1942 | AACTCTTGTTGTGGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1943 | GACGCGTCACGAGAGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1944 | ATTACTCTCAGTGCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1945 | TAGCCGGGTGTTCTTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1946 | TTCTACACACTTCGAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1947 | AGATTGCAGCTATGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1948 | TCTGAGAAGACTAGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1949 | CGAATGTCAGGACCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1950 | CTGCTGTGTCCCTACT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1951 | TTCTTAGGTAGTGAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1952 | CACATAGGTTCAGGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1953 | GTGGGTCTCATATCGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1954 | GGGACCTTCACCCGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1955 | ACGAGGAAGATGTTAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1956 | TCAGGATAGCGTGTCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1957 | GCGCAGTCACTAGTAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1958 | CGCTGGACAGGGTTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1959 | CCCTCCTAGCTAAACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1960 | TGCGTGGGTTGGGACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1961 | AGGGATGTCGGTCCGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1962 | TTTGTCATCGGAATCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1963 | GACCTGGAGATCACGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1964 | TATTACCCATATACGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1965 | GCGGGTTGTACCAGTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1966 | TAGTGGTAGAGTAATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1967 | GGGAATGCATTTGCTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1968 | GTGCGGTAGCCAGTTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1969 | ATAACGCTCGATGAGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1970 | CTACACCAGGTGACCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1971 | AAACCTGGTAAGAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1972 | GCGCAACGTGACCAAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1973 | CTGATAGGTAAATGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1974 | ACGGAGATCGTGGGAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1975 | ACTGATGAGGATGTAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1976 | AGAGCGACAACGCACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1977 | GGCGACTTCCCTCTTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1978 | AAGGAGCCACAGAGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1979 | GAAGCAGTCAATCTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1980 | AGGGTGAAGGACAGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1981 | ACAGCTAGTGCGATAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1982 | ATTGGTGGTGACGGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1983 | TCTTTCCGTGCTCTTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1984 | CGATCGGCATGTTCCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1985 | TTAGGCACAGTGGGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1986 | GCCAAATCACCAACCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1987 | AGTGGGAGTCGGCACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1988 | CTCATTAAGGTGTGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1989 | CAACTAGGTAACGCGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1990 | CAGCAGCAGTACCGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1991 | GTCCTCAAGTGCCAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1992 | GCGCGATAGACACTAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1993 | TTCTACAAGCTGCAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1994 | TCAGCTCGTTCCGGCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1995 | GACTGCGTCAACGGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 1996 | TAGACCAGTAGGGTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1997 | CAGATCAGTGACAAAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1998 | GTACGTACACGGTGTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 1999 | CGCTGGAAGCTCTCGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2000 | GGTGAAGGTCAGGACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2001 | GTAGGCCAGACCGGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2002 | GCATGTATCACGGTTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2003 | TTCTACACAATAGCAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2004 | GTGCTTCGTGATAAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2005 | CCTATTACAGCTTAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2006 | ATCCACCCAGCCTGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2007 | TCTATTGAGTCCAGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2008 | TATGCCCAGGCACATG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2009 | CGTCCATAGCTCCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2010 | TCAGGTAAGTCTTGCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2011 | TATGCCCTCACGACTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2012 | CGCTGGATCAGGCCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2013 | TATCAGGAGGAGTCTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2014 | TGGTTAGGTCCTAGCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2015 | TCCCGATCACCAACCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2016 | ACTGAGTCAAGTTGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2017 | CTTAGGATCACCACCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2018 | GGTGAAGCAACTGGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2019 | CTCTGGTTCGCCATAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2020 | TAGGCATTCTGGTTCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2021 | ATTTCTGAGTTGAGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2022 | TGGGCGTAGTATCGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2023 | TGTTCCGCATGGTTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2024 | CCTTACGAGGGATCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2025 | GGGTCTGTCCTCAACC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2026 | GCTCCTACACACTGCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2027 | CAACCTCCATAGACTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2028 | TTGGCAAAGAGTACAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2029 | TTTATGCCAACACGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2030 | ATAACGCCAGACGCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2031 | AACTGGTTCGCACTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2032 | TAGACCACACGGCCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2033 | GGTATTGTCCAGGGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2034 | TACGGGCAGCTAACAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2035 | ATCTACTTCCAAGTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2036 | TGCCCATTCGCATGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2037 | AAACCTGTCGCCTGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2038 | CGAGCACGTACCGCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2039 | CCTTCCCAGTTCGATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2040 | CCCATACTCAAACAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2041 | GACTAACTCCTTCAAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2042 | GCTGCGACACCTATCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2043 | ACATGGTGTCTTTCAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2044 | CTTACCGAGTCAATAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2045 | TCACGAACACCGAAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2046 | GTACGTATCCAATGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2047 | AGCTTGATCAACACAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2048 | TGTGGTATCATCTGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2049 | CAACTAGTCCGAACGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2050 | GTGTTAGAGTTCGCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2051 | GACGGCTGTTTCCACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2052 | TCCACACAGTACCGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2053 | TATTACCTCGCATGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2054 | TCGGTAATCGCCGTGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2055 | GGATGTTGTCCCGACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2056 | TGGCCAGAGTGGACGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2057 | GGACGTCGTCTCACCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2058 | ACACCGGGTGTGCCTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2059 | GAGGTGATCGTTTAGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2060 | AGACGTTCAAGTAGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2061 | GCGCCAATCGGTTAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2062 | CGCTATCGTCAGAATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2063 | GACCAATTCTTTACAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2064 | GCTTCCATCAACGGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2065 | GTACTCCGTATAGGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2066 | TGTTCCGAGAAGATTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2067 | GATGAAACATCTCCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2068 | TAGCCGGAGTTCCACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2069 | GCCAAATGTTCCCGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2070 | CAACCTCCACTAAGTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2071 | GCCAAATTCTTGTCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2072 | GAGTCCGTCTCTAGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2073 | GCCAAATCACATGTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2074 | CAGAATCCACGCGAAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2075 | CGGACACTCCGTCATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2076 | GACCAATTCCAGTAGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2077 | GGAACTTTCTGGAGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2078 | GCACATACAACTTGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2079 | TTCTTAGGTCACCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2080 | AGAGTGGAGCTAGTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2081 | CGCTGGAAGTGCAAGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2082 | CATTATCGTATATGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2083 | CAGCAGCGTGTTCGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2084 | GCATGTAAGCACAGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2085 | GGGAATGCATCACCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2086 | ACTGAGTAGCAACGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2087 | GATCGATTCACAGGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2088 | TTTGTCATCTGCTGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2089 | CAGCATAAGGTAAACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2090 | GGTGAAGCACGTGAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2091 | GCAGCCATCATTTGGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2092 | AGGTCATTCTTTACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2093 | TGCTGCTTCATTGCCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2094 | CATCAAGGTCTGCGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2095 | TTTGTCACACATGACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2096 | TTAGGCAGTAAGTGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2097 | CCATTCGCAGGATCGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2098 | ACTGATGGTCCAGTTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2099 | AAACCTGTCGTACCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2100 | CTTAACTAGTCTTGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2101 | AAACCTGGTGCGATAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2102 | CCACCTAGTAAACACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2103 | TACAGTGTCCTTGGTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2104 | GATCGTATCGTGGTCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2105 | CGAGCACCATCGTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2106 | TATCTCATCAGCAACT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2107 | GTCATTTGTGAGGGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2108 | GAATAAGGTCGCCATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2109 | ACTGTCCCAAGACGTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2110 | CTGATAGTCTTGCATT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2111 | GAGCAGACAAACGTGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2112 | GTATCTTTCGGTTAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2113 | GTGGGTCCAATGAATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2114 | CTGGTCTTCTTACCGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2115 | CTAATGGCAACACGCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2116 | CGAATGTAGCAATCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2117 | CTGATAGAGGTGATAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2118 | CAAGAAAAGCGATTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2119 | GCGCGATGTAAACCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2120 | TCGTACCAGCGACGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2121 | TTAGGACTCTCGGACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2122 | GCTCTGTTCGGAAATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2123 | CTCACACGTGACTACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2124 | GTTAAGCAGGATGCGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2125 | ACGGGTCGTCTCTCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2126 | TCAGCAAAGTACACCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2127 | TCAATCTTCACTCCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2128 | GTGCTTCGTTTGACAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2129 | GGCTCGACAAGCCATT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2130 | TGACGGCCAGCCAGAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2131 | AGGGTGAAGTTCGCAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2132 | GCGAGAATCACAGGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2133 | ACCTTTACAAGTCTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2134 | CGTGAGCAGATGCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2135 | AAGGCAGAGAGTTGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2136 | CGTCAGGAGACCTAGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2137 | TGTTCCGGTCTAACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2138 | ACAGCCGTCCGTTGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2139 | GGTGCGTCACGCGAAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2140 | ATGAGGGCACCGGAAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2141 | GTCAAGTAGCAGACTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2142 | CACCTTGAGGTAAACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2143 | AAGGTTCCACAAGTAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2144 | GGCTCGATCGGAATCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2145 | CAGCGACAGGGTGTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2146 | TAGTGGTTCATTGCGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2147 | TTCCCAGCATGGTCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2148 | TTTGTCACATCCTTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2149 | CATATTCTCGTTACAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2150 | GCATGCGTCCAGTATG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2151 | GCTGCGATCAACTCTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2152 | CAGAGAGTCCAGAGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2153 | CGTCAGGGTTAGTGGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2154 | ACGGGCTCACAGATTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2155 | CACACCTGTCATCGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2156 | CCGTACTTCCTGCTTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2157 | CGTCAGGTCCAACCAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2158 | GTTAAGCAGCTCCTTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2159 | ATAGACCAGGCATGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2160 | TTCTCAAGTTCTGGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2161 | TGTTCCGGTGGACGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2162 | TTAACTCAGTCGTTTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2163 | TTGGAACGTAAGAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2164 | TGAGAGGTCGTCGTTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2165 | TGTTCCGTCGGTGTCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2166 | CTACCCATCGAATGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2167 | TTAGGCATCCAAACAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2168 | AAGGAGCCAATTCCTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2169 | TGGCTGGTCCGAAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2170 | AGACGTTCAAGACACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2171 | TCCACACCAATGCCAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2172 | TCTTTCCTCCTTTACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2173 | CAACCTCAGGAATTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2174 | AGGCCGTTCTGGGCCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2175 | AGTGGGACAGATGGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2176 | CCCATACGTGACAAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2177 | GGACATTCAGGTGGAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2178 | AGAATAGAGTACATGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2179 | CCTTCGAAGAGGACGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2180 | TCAGCAAAGACAATAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2181 | CGGACACGTAAGGATT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2182 | GGCTGGTTCATCATTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2183 | GCATGATAGGAGTCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2184 | CAGTCCTGTTGATTGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2185 | GGGATGAGTCGTGGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2186 | GTGCTTCAGTAGCGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2187 | ACACCGGTCATCGCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2188 | CAACTAGCACATGGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2189 | CTCTACGAGGAGCGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2190 | GCAGTTACACGCATCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2191 | CCGTACTCAGTCAGAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2192 | GGAGCAACACTAAGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2193 | AAGACCTCAAGCGTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2194 | CGATGGCGTGCAACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2195 | GTTCGGGCACGAAAGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2196 | GTTCTCGCAATCGGTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2197 | CGCGTTTAGGGCTTGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2198 | TTCTCAAAGGCAAAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2199 | AAGACCTCATTCTCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2200 | TTAGGCAAGTGGTAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2201 | CCCTCCTGTCAGATAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2202 | TCCCGATAGCCACGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2203 | CAAGTTGAGTCCATAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2204 | GGACATTCAAAGGTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2205 | CCATTCGCACAAGTAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2206 | GGATTACGTAGTACCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2207 | GATGAAAAGAGTTGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2208 | ATGAGGGCACTGTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2209 | CATGGCGAGGGTTTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2210 | GGACGTCAGGAGTAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2211 | AGTTGGTTCGGGAGTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2212 | TTCTACAAGGGTCTCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2213 | CGAGAAGTCACCAGGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2214 | GCTCTGTAGTTGTCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2215 | TGACAACAGGTGGGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2216 | TCAGGATAGTATGACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2217 | GCAAACTGTGCACCAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2218 | CGGACGTCAGTCAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2219 | CGTGTCTTCCTTAATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2220 | CGATCGGGTGTCAATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2221 | CACTCCAAGTTCCACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2222 | GGTGCGTGTGCTCTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2223 | ATCCGAAGTCTAGCGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2224 | CGGAGTCAGGAGCGAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2225 | AGTGGGAGTGGCGAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2226 | CAGTAACGTGGCTCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2227 | TAGGCATCACATTAGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2228 | CTCGTCAAGGGAAACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2229 | TTCGAAGCAAGTACCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2230 | ATCTACTCAGGGAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2231 | CATATGGTCAGTGCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2232 | CTCGAAATCTTTACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2233 | TGATTTCGTCGGCTCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2234 | AAGCCGCCAAGTCTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2235 | GATTCAGCAGGTGCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2236 | GACTGCGTCGGTTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2237 | GTTCGGGGTTATCGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2238 | GCTGCTTCATTATCTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2239 | AAGGTTCTCTTGTCAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2240 | CGTAGCGGTAGCGTCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2241 | GTGAAGGGTATAGGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2242 | GTGTGCGAGGTAAACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2243 | TCAACGAAGAATGTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2244 | CAGTAACTCAATACCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2245 | CGGAGCTCATGCGCAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2246 | TAGAGCTAGCTCAACT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2247 | GACCTGGAGAAACGAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2248 | GAAACTCGTTATCCGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2249 | TGGGCGTCACGTCTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2250 | CATGACAGTCAAAGCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2251 | ATGTGTGCATCATCCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2252 | GTTCATTAGATGTGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2253 | CTCGAGGTCAGAGCTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2254 | ACATGGTCAAACAACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2255 | GGCGTGTGTCGGCATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2256 | TGCCAAACAGCTGTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2257 | TGGTTAGTCACTGGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2258 | GACGCGTTCAAAGTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2259 | CTGGTCTCATTCTTAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2260 | ACACCAATCTACGAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2261 | CATCGGGTCCACGCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2262 | TAGTTGGCAATCACAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2263 | GTGCATATCTGTCCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2264 | GTGCATATCCCTTGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2265 | CGCTATCCAAAGTGCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2266 | GTTCTCGTCTACGAGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2267 | GTTACAGTCTTGCATT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2268 | CAAGTTGCAGCTCGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2269 | GGCTGGTAGGCTAGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2270 | AAGACCTCAACTGCGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2271 | AACTGGTTCAGCTCTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2272 | ATTGGTGTCCCACTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2273 | ATAACGCGTAACGACG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2274 | TGAGGGATCTGCTGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2275 | GCAATCAGTCACCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2276 | CATCCACCATGTAGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2277 | GGACATTAGGGTTCCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2278 | TTGGCAATCACGACTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2279 | AGCGTATGTGCAACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2280 | TGGTTAGAGCTCCTCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2281 | TTGGAACAGATGTAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2282 | GTTCGGGAGGTGCTAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2283 | CACATAGCACGCTTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2284 | GCATACAGTGAGGGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2285 | CCAATCCAGAGCCTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2286 | CTCTAATTCTGTTTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2287 | TCATTTGAGGATTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2288 | GACACGCCAGGGTACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2289 | GTGTTAGTCAGCTCGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2290 | GGCTGGTTCCATGAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2291 | ATCATGGTCACGCATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2292 | CACACTCTCAAACAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2293 | AGTGAGGTCCGCATCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2294 | CTCGAGGGTACCGTTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2295 | TGGACGCAGGAGTCTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2296 | CGCTGGAAGCCCAACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2297 | GATCTAGAGGGTGTGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2298 | AAACCTGTCGGCATCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2299 | GACTGCGAGCTGCAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2300 | ACACCGGGTCGGCATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2301 | GATCGATAGACTAGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2302 | TGCGTGGCACAGACTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2303 | AAACGGGTCAGTACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2304 | ACGGAGATCGTTACAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2305 | CTCCTAGAGTAACCCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2306 | CGAGCCACAGTATGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2307 | ATCATCTCACACATGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2308 | GTCCTCATCTCGGACG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2309 | AAGCCGCGTCTAACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2310 | TGGCTGGGTGATGATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2311 | AAGGAGCCACAAGACG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2312 | TCTTCGGCACGGCCAT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2313 | TCACAAGAGCGTGTCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2314 | GCTCTGTTCAATACCG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2315 | CTGCTGTCATGGGACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2316 | AAGTCTGCACCATGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2317 | CGACTTCCATGGGACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2318 | GCGCAGTAGCGTCAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2319 | GCATACACAGACGCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2320 | CGTGTCTAGACCGGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2321 | GTATCTTCACTCAGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2322 | AGCCTAATCTTGACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2323 | TACTTACCAATGGTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2324 | GTCATTTGTGAGTATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2325 | TGCGGGTAGGTGCTAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2326 | GTGCTTCTCTACCAGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2327 | GCATGTATCTGAGTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2328 | CGCTTCATCTGCAGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2329 | ATCATCTGTCACCCAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2330 | TAAGAGACAGTGAGTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2331 | ACTTTCATCCATGAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2332 | TGGTTCCAGTCGATAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2333 | TGTGTTTCAAATCCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2334 | GTAGGCCTCAAGGTAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2335 | CGATGGCTCTGTCCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2336 | CACATTTGTGATGCCC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2337 | TGGACGCAGATACACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2338 | CTGTGCTAGGCAGGTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2339 | ACGCCAGAGTTACCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2340 | TTGACTTGTAAATGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2341 | TGCACCTAGAGGTTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2342 | CTAACTTAGCGTGAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2343 | CATATTCTCCGTAGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2344 | CATCGGGTCTGCCCTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2345 | TTCTACATCAGTGTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2346 | TCCCGATAGCTACCTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2347 | CGTAGGCAGTTTAGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2348 | TTGAACGTCCCTAACC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2349 | ACACCCTTCTGATACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2350 | CACCACTTCACTTACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2351 | GCACATAGTTATTCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2352 | GTGCAGCCAGGAATGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2353 | ACGGGTCCATCCGGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2354 | GAAGCAGGTCAGTGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2355 | CCGGTAGAGGGTGTTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2356 | TATTACCAGGGAAACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2357 | TACACGATCAGTGTTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2358 | TGGGCGTTCGGCTACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2359 | ACACCAAAGATTACCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2360 | TGTTCCGTCACAGTAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2361 | CATGGCGAGATGGGTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2362 | GTTACAGCAAGTTGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2363 | ACATGGTGTCCGAATT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2364 | CGGGTCAAGATCACGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2365 | ACATACGTCATAGCAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2366 | GCTCCTAAGCATCATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2367 | TGGTTCCCACCACCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2368 | CTCGTACAGGGAAACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2369 | CTCTACGGTCTCATCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2370 | TCAGGTATCCAAATGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2371 | GGGTCTGTCGTTGCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2372 | GACTACACAAGTAGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2373 | CCATGTCAGGATGGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2374 | GTCAAGTGTTCCACGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2375 | ACGGGCTCAAGCTGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2376 | CCACCTAAGAGTAATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2377 | CGTCAGGGTAATAGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2378 | CGTTAGACACAGTCGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2379 | CGTAGCGGTCGCGAAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2380 | GCTGCAGGTACATCCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2381 | ATGTGTGCACTGTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2382 | CAGCATAAGCGAGAAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2383 | GAATGAATCGCTTAGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2384 | CGGGTCACATCAGTCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2385 | ACTTGTTAGCCAGGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2386 | TTGCCGTAGATCCCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2387 | TTTACTGAGTTCGCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2388 | CACCACTAGGACAGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2389 | AAATGCCAGCGCTCCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2390 | CACACAAAGTTAAGTG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2391 | ACGATGTAGGATATAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2392 | ACTATCTAGGACACCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2393 | GGCGACTGTTGTCGCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2394 | CACAAACTCCCTAACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2395 | CTGTGCTCATGACGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2396 | TCAGCTCAGTAGGTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2397 | CTACACCAGGAACTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2398 | ACTGATGAGGGTCTCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2399 | GCAGTTAAGACAAAGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2400 | TAGCCGGTCGTAGGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2401 | TGAGCCGGTTCCACGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2402 | AGGTCCGCACGCATCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2403 | CAAGTTGAGGCGATAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2404 | ACATGGTCATGTTGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2405 | AGACGTTTCCACGACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2406 | TGACTAGGTAATTGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2407 | TCATTACGTTTCGCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2408 | TGCGGGTAGTTCGATC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2409 | GTACGTATCCTCCTAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2410 | CTCGAGGAGAGGGCTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2411 | GACGGCTAGTATTGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2412 | GTCTTCGGTGCACGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2413 | CCTATTATCGCAAGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2414 | AGTGAGGCATTAGGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2415 | AGCCTAACACGGTAAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2416 | GAGGTGATCGCCTGTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2417 | GCAATCACACTGCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2418 | AAACCTGCATTGCGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2419 | GGATTACAGATGTAAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2420 | TTAGTTCAGGGTGTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2421 | ACCAGTAGTCTTGATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2422 | CCACGGAGTTCGCGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2423 | CCTAGCTGTAGAGGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2424 | GATCGTAGTCTGGTCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2425 | CTAGCCTGTTGCTCCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2426 | ACCAGTATCATAGCAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2427 | CTACATTCAAAGCAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2428 | TTAGTTCCACTGCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2429 | GAAATGATCCTCAATT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2430 | CACCACTTCTCGTTTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2431 | ACTTTCATCACGACTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2432 | TCCACACGTTTCGCTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2433 | TACTTGTTCTTGGGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2434 | CAACTAGAGAGGTACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2435 | CGACTTCCACATTAGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2436 | AGCCTAAAGGGTGTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2437 | AGTGGGAAGCTATGCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2438 | CTCGTACGTATATGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2439 | TGACAACCAGACAAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2440 | CAGCAGCTCGGTCCGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2441 | CACACTCCAAGTCTGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2442 | CGTCAGGAGAGATGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2443 | CTACATTTCAGAAATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2444 | CCCAATCGTGTGCCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2445 | GTGAAGGCAGATGAGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2446 | TTCTACATCAATCACG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2447 | TCGGTAATCTTGTATC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2448 | TGGGCGTCATCCGCGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2449 | ACATGGTAGGCGTACA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2450 | CGGACACAGGAGCGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2451 | GTCGTAAGTAAGGGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2452 | TAGTGGTTCTCTGAGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2453 | GGATGTTTCTTTACGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2454 | CCAGCGATCATAGCAC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2455 | CGAGAAGAGTGGTAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2456 | CAAGATCCACAGAGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2457 | AAGCCGCGTATATGGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2458 | TAAGAGAAGCCCAATT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2459 | GGACATTGTACCGTTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2460 | TTTGTCACAACTGCTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2461 | CCAGCGACATCTATGG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2462 | CGGCTAGCAGCCTGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2463 | ACTGAACCATCGATGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2464 | ACCTTTAAGGAATGGA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2465 | GATCGATTCCGTTGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2466 | CGGACTGGTAATAGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2467 | CATGACAAGATATGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2468 | ATTCTACCAGCGAACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2469 | CATCAAGCACTGTGTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2470 | CAAGATCCACACATGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2471 | TTATGCTCAGGCTCAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2472 | GCCAAATTCCCATTAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2473 | CAGCAGCTCGTTGCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2474 | CACAAACGTAAATGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2475 | GGGCACTTCCTGTACC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2476 | ATCATCTCAGTTTACG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2477 | CGGCTAGTCCAAATGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2478 | CTGATAGGTACAGCAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2479 | CATTATCCACGGTGTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2480 | GTTCTCGCAGACGCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2481 | AGCATACAGATGTGGC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2482 | TGTGGTATCCACTCCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2483 | CGAGCCATCGAGCCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2484 | CTGAAACGTCGAACAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2485 | ACACCCTTCGAGGTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2486 | AGGGATGCAGTCAGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2487 | GGCTCGATCCCTCAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2488 | ATTATCCGTATGAATG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2489 | GCAATCACAGTACACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2490 | TTCTACACAGGCTGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2491 | TCAGGTAAGGATATAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2492 | TACAGTGGTTTACTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2493 | GCAGTTATCACCGGGT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2494 | CGAGCACTCTCTGTCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2495 | CTTACCGCACAGACAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2496 | CTCTACGTCGTCCAGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2497 | GCACATATCAGCACAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2498 | ATCCACCTCAGTGCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2499 | CTCATTAGTGGCTCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2500 | CAAGTTGGTTCGCGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2501 | CGATCGGTCGTACGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2502 | GGAATAACAGTTCCCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2503 | CACTCCAGTAAGAGAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2504 | CTGCTGTAGATGAGAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2505 | ATGTGTGCATCCCACT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2506 | GACGGCTCACGGCGTT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2507 | GGACATTCACCAGTTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2508 | GGCCGATAGACCACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2509 | TACTTGTGTGCAGTAG | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2510 | ATCCGAAGTCGCTTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2511 | TGACGGCTCTTGTCAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2512 | CGGACACGTTCAGACT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2513 | AGTGGGAAGCTGAAAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2514 | CAGAATCCACGAAATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2515 | GGACAAGGTATATCCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2516 | AAAGATGTCTTTCCTC | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2517 | TGCCCTATCTGTCCGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2518 | CCCATACCACCGAATT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2519 | TCGCGAGTCTTAGCCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2520 | ATCTACTTCGATCCCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2521 | GCTTGAATCTGCTTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2522 | CCGTGGACATGTAGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2523 | ACTTGTTTCTTGAGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2524 | AGGTCATGTCTAGCGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2525 | GGTGCGTAGCCCGAAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2526 | CGACTTCTCTATCCTA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2527 | TAGACCAGTATGAAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2528 | TAGTGGTAGGTCGGAT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2529 | AACGTTGAGGCACATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2530 | CCACGGAAGGCAGGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2531 | TGACGGCGTACAGTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2532 | TTAACTCGTCAGAATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2533 | TACTCGCAGGCTAGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2534 | CAGTCCTTCACATGCA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2535 | TCAGCAAGTTGCGTTA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2536 | GATTCAGGTCAGAATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2537 | CTGATCCAGCCTCGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2538 | GTTCTCGAGAAGGCCT | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2539 | ATTGGACTCTGAGTGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2540 | CTCGTCACAATGGACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2541 | TTTCCTCTCTGTACGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2542 | CCTACCAGTGTCGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2543 | GAATAAGTCCAGTAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2544 | TGTGGTAGTATATGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2545 | CGGACGTGTGGGTCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2546 | CTCGGAGCAAACAACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2547 | ATGAGGGCAAACTGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2548 | CTGCTGTGTAGCAAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2549 | ACACCAATCTTCGGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2550 | AACTGGTGTAGCCTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2551 | CTACGTCGTGACGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2552 | CGACTTCCATCGATTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2553 | CATCGGGAGAACAATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2554 | GTCATTTTCCGCGCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2555 | CCCATACAGAGATGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2556 | GCATACAGTTCTGTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2557 | ATGCGATAGTGCCAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2558 | GGGCACTTCATGGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2559 | GCGCAGTCAGTGGGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2560 | ACTATCTGTAAGTAGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2561 | TGCTACCTCCTAAGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2562 | GAATAAGAGATATACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2563 | TTCTACATCATTATCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2564 | TCGTACCCATATACGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2565 | TTTGTCAGTTTGTGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2566 | TATCAGGTCGTGGGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2567 | TCAACGAAGCAGACTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2568 | CAACCTCGTGTAATGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2569 | TGACAACCAGGTCGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2570 | CCTTACGCATGTTGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2571 | GTAGTCACACCACGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2572 | AACTCTTTCAGTTAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2573 | CGAACATGTCTGATCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2574 | CGGAGTCCAATGAATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2575 | CGTAGGCTCTCCCTGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2576 | AGCATACGTGAGTATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2577 | GCGCCAAGTGTCAATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2578 | GCAATCATCGCGATCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2579 | TCTGGAAAGTGTGGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2580 | TGCACCTCACTATCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2581 | GATTCAGCATGACATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2582 | CGATGGCGTATGCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2583 | AACCATGAGGACATTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2584 | GTATTCTAGAGAACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2585 | CGTTGGGAGTGTACTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2586 | AGTCTTTCATGTTCCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2587 | AAGCCGCAGGCAATTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2588 | ATAAGAGCAGTATCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2589 | CAGCAGCAGTGACTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2590 | GTATCTTGTAAAGTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2591 | TTCTCCTAGACTAGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2592 | CTGAAGTAGCACCGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2593 | TTCTCCTTCGCGTTTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2594 | CTCATTATCATGGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2595 | TTTCCTCAGGCATGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2596 | TCGCGTTAGCTAGTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2597 | AAGGAGCAGATCTGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2598 | TGAAAGAGTAAGTAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2599 | GTAACGTAGTCCCACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2600 | GTCACGGAGGCTAGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2601 | GGACGTCTCGAATGGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2602 | GACACGCAGATACACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2603 | CTTGGCTCATGCTAGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2604 | CCTTCCCTCACTGGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2605 | CAGCTAACAATGGATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2606 | GCCTCTATCATCATTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2607 | CTCTGGTCAATGGAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2608 | ATTACTCCATCCCATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2609 | AGGGAGTGTGTGGCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2610 | AGTGGGAAGGCTAGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2611 | ACGCCAGTCCCTTGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2612 | TCGTACCGTGAGGGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2613 | GCTTCCACACGTAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2614 | GTCGGGTGTGATAAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2615 | CTACGTCAGGCTAGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2616 | AGAGTGGGTGGTACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2617 | TCAGGATAGATCCCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2618 | CCAATCCTCATTTGGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2619 | TATCTCATCTGAGGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2620 | CTAACTTCACGGCTAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2621 | GGAACTTGTGATGTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2622 | ACGATACAGAACAACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2623 | ATTCTACCAAACTGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2624 | GCGAGAAAGCAGACTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2625 | GTTCATTGTAGCCTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2626 | CTCCTAGAGACTACAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2627 | AGCAGCCTCATCGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2628 | CTCTACGGTCCGAACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2629 | ACATGGTCACCAGCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2630 | GGTGAAGCAAGAAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2631 | TACACGATCAAGGCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2632 | TACGGATTCCAGAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2633 | TTGAACGCACTGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2634 | TTTCCTCTCGCATGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2635 | GCGACCATCACAGTAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2636 | ACTGAGTCAATTCCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2637 | TTCGAAGGTCAACATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2638 | GATTCAGCAACGCACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2639 | GCGACCAAGGTCATCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2640 | TACTTACTCCGTTGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2641 | GAACGGAGTTGGACCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2642 | ATTATCCCAATCGAAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2643 | CTCATTAGTTCATGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2644 | AGCCTAAGTTGAACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2645 | GGCCGATAGGGCATGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2646 | GCGCCAAAGCGTCTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2647 | ACGTCAAGTTCCTCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2648 | CAGCGACCACTTGGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2649 | ACATACGTCATGCAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2650 | GTACTTTTCCCTGACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2651 | GGGAGATGTGGTCCGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2652 | GTGAAGGTCGTTTAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2653 | TGGGAAGCACGACTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2654 | TGCCCATTCATCTGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2655 | TCCCGATAGCGATATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2656 | GCCAAATAGAGGGCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2657 | CAGAATCAGACCGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 2658 | GCGAGAATCTAACCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2659 | GAACCTAAGAGTACCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2660 | AGCATACGTCACAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2661 | GTACGTAGTAGCCTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2662 | TTTCCTCCACGGTGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2663 | AGCGTATGTTACCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2664 | GCAATCAAGCTAGTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2665 | CCGTGGATCACAGGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2666 | CGAGCACTCGGAAATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2667 | ACATACGTCGCGCCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2668 | AACTCTTCAAGTACCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2669 | GGTGAAGTCTAACTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2670 | CATCAGAGTCAAACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2671 | TGCCAAAGTAAATGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2672 | TTGAACGTCGCCAGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2673 | CAACTAGGTTTGACTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2674 | AACTCTTTCGGTGTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2675 | CCCATACCAAATACAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2676 | TGTGGTAAGCAGCGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2677 | GTTCTCGGTTGTGGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2678 | AGAGCGAGTAGAAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2679 | TAGAGCTAGTGGTCCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2680 | CACACTCGTGTTCGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2681 | CCCAGTTTCGGCATCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2682 | TGACTTTAGCGATCCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2683 | GTTCTCGGTCAGGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2684 | ATCATGGAGCTAACAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2685 | GACAGAGTCTCCCTGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2686 | GTCAAGTCATATACCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2687 | AAAGTAGAGCTGCCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2688 | AGAGCTTCATGTTGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2689 | GCATGCGAGGTGCTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2690 | GTCGTAAAGAGTGACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2691 | CTACCCACACATCTTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2692 | CAGCGACTCCAACCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2693 | ATAACGCCAGTGACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2694 | TACTTGTAGTCCGGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2695 | AGTTGGTGTGAAGGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2696 | CTGCCTACAGCCTATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2697 | CTGTGCTCACTCTGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2698 | TCAGCAAAGGGCTTGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2699 | CTCACACTCAGCTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2700 | AGTAGTCTCGGTTAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2701 | GGGCATCCATACCATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2702 | GATCTAGTCTTAGCCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2703 | CGAGAAGAGCTTCGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2704 | TTTGGTTAGATGAGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2705 | AACTCAGAGCGATGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2706 | TTCGAAGTCAACACAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2707 | CGTTAGAAGCAGATCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2708 | GAAATGAAGGACTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2709 | AGCTTGAAGAGGGATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2710 | CGTCCATTCAAGATCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2711 | CTTACCGCATCCCACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2712 | CGGACACCAGGATCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2713 | CACCACTGTGATGTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2714 | GGGACCTGTTAAGACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2715 | TGTATTCTCTTCGAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2716 | TTTGTCATCATGTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2717 | CGTCAGGCAATCCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2718 | TCTTTCCGTGCGATAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2719 | CATTCGCAGGTAGCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2720 | CAGCAGCTCACTTACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2721 | CAGCCGAGTGTGTGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2722 | CTAGCCTCACATTAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2723 | CGTGTCTAGATGTAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2724 | CTCTACGGTCCAACTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2725 | CTGAAGTTCTTCGAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2726 | TGCTGCTAGAAGAAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2727 | ATCATCTAGCGCCTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2728 | CTGATAGTCTAACTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2729 | GACCAATTCACTCCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2730 | CTGAAACAGATCCCGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2731 | TCGGTAACAAACGTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2732 | TTGGAACAGCCCAACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2733 | ATCCGAACAGATGGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2734 | CTGAAGTTCCTTGACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2735 | TGTTCCGAGAGACTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2736 | GTACTTTCACTTGGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2737 | CTCACACTCACAATGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2738 | GATCGCGGTAAACGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2739 | GAACCTAGTCTAACGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2740 | AGGGAGTAGGTGCTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2741 | AGCAGCCAGTGTGGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2742 | AGCTTGACAGATCTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2743 | TGCCCATGTTCAGGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2744 | GATGCTAAGAGTACAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2745 | TCAGGTATCTCGTTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2746 | TGGGCGTCACAACGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2747 | AGCATACGTGGACGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2748 | CGCTTCACATGTTGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2749 | ATTATCCTCAGCATGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2750 | GTCTCGTGTTAGAACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2751 | CGATCGGTCGAGAACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2752 | TGAGCATTCCTCATTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2753 | GTCCTCACACATGTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2754 | CTGATCCTCGTAGGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2755 | CGTTGGGGTCGGCATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2756 | TCTATTGAGCTGCAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2757 | TAGACCACAAGTAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2758 | GGGTTGCAGAATTCCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2759 | AGAGCTTGTACATCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2760 | ATTTCTGCAGCTTAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2761 | GCATGTATCTCAAGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2762 | GCAGCCAAGTTAGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2763 | ATCTACTTCACAGTAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2764 | TTAGGCAGTTTGGGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2765 | TCAGCAAAGCAATCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2766 | GGGTCTGAGTCCAGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2767 | TGCTACCTCGGTGTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2768 | ACCAGTAAGGGAAACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2769 | ACATGGTGTAATTGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2770 | TGATTTCCACACGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2771 | TAAGTGCGTCGACTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2772 | GTGCGGTCATACTACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2773 | CAGAGAGGTGGTAACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2774 | AGCTCTCAGCAGGCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2775 | CAGATCATCTGATTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2776 | CGTTAGACACATTTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2777 | CCGGTAGCAGGGATTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2778 | ATTGGACAGTACGTAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2779 | GAACGGACACGCATCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2780 | ACGGGTCCATATGGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2781 | CACATAGAGATCCGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2782 | GTTAAGCTCTAACCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2783 | GCGCAGTGTCATTAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2784 | TCAGATGCAAGTAATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2785 | ACGTCAAAGGGTCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2786 | GACTAACAGTGTTTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2787 | CCAATCCTCCAGTAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2788 | CACAGGCGTTCCGGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2789 | CGCTGGATCTAACTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2790 | AGCATACGTGAGGGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2791 | AGCTCTCGTCACTTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2792 | GGGCACTGTGAAATCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2793 | TACACGATCGTGGGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2794 | GTCGTAACATATACGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2795 | CTTTGCGAGCCAACAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2796 | CACACAACATTACGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2797 | GAATAAGAGCGTGAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2798 | TTCGAAGAGAGACTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2799 | CGAGCCATCAACACTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2800 | ACGCCAGAGTGGGTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2801 | GTTTCTAGTGTTAAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2802 | ACACCGGGTAAACGCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2803 | TGTCCCAAGTACGTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2804 | AAGACCTTCAATAAGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2805 | CCGTACTTCCTCGCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2806 | GGATTACCAAGCCGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2807 | CTGGTCTTCCGCAGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2808 | GTAACGTGTTTGTTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2809 | CAACCAATCGGCCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2810 | GATCTAGAGAGAGCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2811 | ACAGCTAGTATAGGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2812 | AACTCAGGTCTGGTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2813 | TGATTTCCATCTCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2814 | ATCATGGTCATTATCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2815 | CCCAGTTAGGACACCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2816 | CACACAATCAATACCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2817 | ATGGGAGAGTTGTAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2818 | CTCATTACACCGATAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2819 | AGTGTCAAGCAATATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2820 | TCAGGATCAAAGTCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2821 | CTGATCCCATCCTAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2822 | ACGCAGCCATGTCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2823 | ATTTCTGGTAGCCTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2824 | ATCACGAAGCGTCTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2825 | AGGCCGTAGGCTATCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2826 | CTCAGAACACGACGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2827 | TGGGAAGAGATCCGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2828 | CGGAGCTGTTGTCGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2829 | GTATCTTGTTGAGTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2830 | TTCGAAGTCTATCCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2831 | CAAGATCCATCCGTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2832 | CGATGGCGTTCGAATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2833 | CAGCATATCGGATGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2834 | TGACGGCTCGCATGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2835 | CGTAGCGTCTGATTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2836 | ACATGGTAGATCGATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2837 | GTCACAATCAGTTAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2838 | ACAGCCGAGCTGTCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2839 | TAGACCAAGGACACCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2840 | ACGATGTTCCTTGCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2841 | TTCGAAGAGTTTGCGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2842 | TATCTCACAAAGGAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2843 | CAGCTAACAATGCCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2844 | TCAGGTAGTTCGTCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2845 | CGCTTCAGTAATCGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2846 | GAAACTCGTAGTACCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2847 | GGGAGATAGCTAACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2848 | AGGCCGTGTCCAGTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2849 | CGAGCCAAGAAACCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2850 | CCCATACGTGTCGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2851 | ACGGAGAAGGCAGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2852 | GTACTCCTCTAGCACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2853 | GACTAACCAGCTGCAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2854 | GATCGTAAGCCACGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2855 | CAGCCGAAGTGCGATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2856 | GGACAAGAGCCCTAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2857 | GCATGCGCAAAGTGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2858 | AGACGTTGTAAGGATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2859 | GGAATAAAGTGACATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2860 | GTTAAGCCACCGTTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2861 | GGCTGGTGTCATATCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2862 | TCTTTCCGTGCGCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2863 | CAAGATCCACCCTATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2864 | TGCCCTATCGATCCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2865 | GACGCGTCATATGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2866 | TACGGGCGTGGGTATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2867 | ACGATGTGTCTCTTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2868 | CTAGTGAGTTGCTCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2869 | AAGTCTGTCATGTAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2870 | GTAGTCAGTCCGAAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2871 | AAGGCAGGTAGCGTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2872 | CCTAGCTTCAATAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2873 | TCCCGATAGTGAACAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2874 | CCGGGATTCAGCTTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2875 | TTAGTTCTCCGGGTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2876 | AAGGAGCTCGGTGTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2877 | CATTCGCTCCAGTATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2878 | TGTCCCAAGTTCCACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2879 | GGGCATCTCTGGGCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2880 | GTCACGGTCGGAGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2881 | TCTTTCCAGAGGTTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2882 | AGGGAGTCAGATCCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2883 | CCTTACGGTGTGGCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2884 | AAGGAGCCAGGACCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2885 | GATTCAGCACATTTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2886 | AGATCTGAGTATCTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2887 | TACAGTGTCATGGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2888 | TGCACCTTCCAAGCCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2889 | CCCAATCGTTCTGTTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2890 | ACGTCAAGTTTACTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2891 | CAAGAAATCGGTTAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2892 | CCTCAGTGTTCCCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2893 | GGGCATCTCCAAACAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2894 | TGGTTAGTCTCCAACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2895 | AACCATGAGGCGTACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2896 | ATTACTCAGCACACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2897 | CAGCAGCAGTGTACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2898 | TAGACCAAGTGCCATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2899 | AAAGTAGGTCATATGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2900 | GCATGCGGTTCATGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2901 | TGCGCAGTCCAAGTAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2902 | ACGTCAAGTCTCCACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2903 | GGAATAACACATCCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2904 | TTCTCAAAGTGTGGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2905 | GTGCGGTCAGGTCTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2906 | CCTACACGTGGCCCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2907 | AGCAGCCGTTGCTCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2908 | TCTCATATCAAGGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 2909 | CAGCAGCCAAAGCAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2910 | GATCGTACAGGAACGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2911 | TGTTCCGCAGCGTAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2912 | TACTCATTCACCATAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2913 | TAGTTGGGTCACCTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2914 | TTGCGTCAGTCCGTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2915 | TGATTTCAGGTCATCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2916 | CAACCTCTCCCATTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2917 | CGTCACTTCCAGTAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2918 | CTCGGGAAGTGTACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2919 | GGCGACTTCGCCTGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2920 | TGCGGGTCACCAGTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2921 | ATTTCTGAGAGACTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2922 | AATCCAGCACCGAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 2923 | GCTGCAGGTCGAACAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2924 | CATCAGATCGTCTGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2925 | GTTACAGAGATCTGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2926 | ACGGGTCTCGAATGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2927 | TCTTCGGGTGGTCTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2928 | GCAAACTAGTTGCAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2929 | CACCACTTCCTTTCGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2930 | GCAGTTACACAGGAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2931 | AGCTCTCAGCCGCCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2932 | CAGCAGCCAAACGTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2933 | GTGCAGCTCATCTGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2934 | TGGCGCACAATCAGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2935 | ATCTACTCACCCATTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2936 | AAGCCGCGTCGATTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2937 | GGTGTTAAGTGAAGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2938 | TAGAGCTCAGGCTCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2939 | AGAGTGGAGAATGTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2940 | AATCCAGCACGTGAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2941 | CACACAAGTCAACATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2942 | TACACGACAAAGCAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2943 | TTCTCCTCACATCCGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2944 | GACAGAGGTTACGTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2945 | GGCTGGTTCCAAACTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2946 | GGTGAAGCACATGACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2947 | GCGCGATGTGAGGCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2948 | CACAGGCAGCACACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2949 | TGGGCGTCAAGCCGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2950 | TCTGAGAAGCTGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2951 | AATCCAGCATGGTCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2952 | TCTCATAAGATGTAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2953 | ACAGCTACAGCGAACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2954 | TCAACGATCATAAAGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2955 | CGAACATCACCCAGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2956 | CACACCTAGAAACGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2957 | TGCGCAGCACGGTAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2958 | CTGATAGCAGACGCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2959 | GCGGGTTAGATCTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2960 | TCATTACCAGGACGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2961 | CATATTCTCGAACTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2962 | GATCGATGTCAGTGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2963 | GCGGGTTAGTAATCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2964 | CTCAGAACAAGCTGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2965 | GGTGCGTGTACAGTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2966 | ACGCAGCGTTGTGGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2967 | ACTTTCATCCACTCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2968 | GCTCCTAAGATGTGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2969 | TATGCCCGTGAACCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2970 | AATCCAGGTTATCACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2971 | CATCAAGAGTGAACGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2972 | GAACGGAAGGCCGAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2973 | TCATTACAGCCCTAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2974 | TCGTAGAGTTCCACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2975 | CTCGAGGGTCACACGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2976 | TCTGAGACATGCCACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2977 | ACGCAGCCAGGAATGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2978 | ACGGAGACATGGAATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2979 | GCACTCTCACATTCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2980 | AGCTCCTTCAGTGTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2981 | ACGGGTCTCAGTGCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2982 | AAGGAGCAGGAGTACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2983 | ACAGCTAGTAAAGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2984 | CAGCTAAAGATCTGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2985 | GTGTTAGGTGCCTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2986 | CCTTACGTCTCGTTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2987 | GTCGTAAGTCCGTGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2988 | AGTCTTTGTGAGGCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2989 | CGCGTTTAGGGATCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2990 | GAATGAAAGGCGTACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2991 | TGGCTGGGTAAGTGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2992 | TCCACACGTCCTCCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2993 | TCAGCTCTCGTGACAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2994 | TCTTCGGGTAGCTGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2995 | TCTTCGGCAGCTGCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2996 | GAGCAGAGTACCGAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2997 | CACACCTAGTTGAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 2998 | TACGGTATCAACGGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 2999 | AAACGGGAGTACCGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3000 | TCGCGAGTCTAACCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3001 | ACAGCCGGTAGCACGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3002 | CAGTAACAGCTAAACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3003 | GAGCAGAAGGAGTTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3004 | TTAACTCCAATCAGAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3005 | AAGGCAGTCTCATTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3006 | TAAGAGAAGCGATAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3007 | GCATGATCACCAGGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3008 | CATGCCTTCTCGAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3009 | GGACAAGGTGCACCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3010 | GAACCTAAGGGTATCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3011 | AGATCTGTCACATACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3012 | GATCGATTCGCGTAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3013 | CGGACTGAGCAATCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3014 | TCCACACCACCGAAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3015 | TACTTGTCAGTACACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3016 | TACTCGCTCGCATGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3017 | CACCACTAGAAACGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3018 | CCACTACAGCCACGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3019 | AAGGCAGAGTGTACCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3020 | GTTCGGGAGTTCCACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3021 | CATCGGGCACGAGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3022 | CGACTTCTCATACGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3023 | CACCAGGCACGAAACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3024 | TACTTGTGTGATAAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3025 | CTCGTACGTCACAAGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3026 | CTACACCTCATCGATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3027 | GCCTCTATCCTTGACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3028 | CTCTAATCAGCAGTTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3029 | CCTACCAAGACCGGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3030 | CTCAGAAGTTAGGGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3031 | GCATGCGTCGGCGCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3032 | GGGTCTGAGGACTGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3033 | GCACATATCACTTCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3034 | TCTTCGGCACAGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3035 | GCAGTTAAGTCCGTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3036 | AAAGCAAGTTAAGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3037 | TGCGGGTTCGAGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3038 | GAGTCCGTCAGCCTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3039 | CCTTCCCCACCAGTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3040 | ACGAGCCGTCCGAATT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3041 | CCTTCCCGTCCGAAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3042 | TGTTCCGTCTGCCCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3043 | TAGTTGGGTCTTGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3044 | CACAGTAAGTGTCCCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3045 | GTTACAGAGTTGAGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3046 | GCAGTTAGTAAGCACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3047 | CCGTGGATCGTTTGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3048 | GGACATTCAAACGCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3049 | GGTATTGTCCCATTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3050 | GCATGATAGCAATATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3051 | GTATTCTAGATGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3052 | TCTCTAAGTAGCTCCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3053 | GAACATCCACCCATTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3054 | CGGAGCTTCCCTTGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3055 | CGATCGGTCCCTAACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3056 | GATCGCGTCCTGCCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3057 | CATATGGCATCGATGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3058 | ACAGCTATCTGCTGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3059 | GACGTGCAGCTAACAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3060 | ATCCGAAAGACGCTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3061 | AGTCTTTGTTTACTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3062 | CCAATCCTCCACGTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3063 | CACATTTTCAGAGCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3064 | ACATGGTTCGTTTATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3065 | GTCTCGTCAAAGGAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3066 | GGACGTCGTGTCTGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3067 | CTTGGCTTCTTGTTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3068 | CAGCATAAGGCTCTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3069 | GAGTCCGGTGATGTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3070 | AACACGTGTTAAGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3071 | CAGTCCTGTCCGAACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3072 | TAAGCGTTCCATGCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3073 | AGCTCCTAGTCATGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3074 | CTCAGAAGTTGAGTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3075 | GATGCTATCCCTCAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3076 | AGAGCTTGTAGCAAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3077 | TCTGAGATCCATGCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3078 | CGAGCCATCATCTGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3079 | CTCTGGTTCGTCACGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3080 | GGGACCTAGAGGGCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3081 | GTAACGTCATCCCATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3082 | TAGACCATCGTCACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3083 | AAGGAGCTCCGGCACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3084 | CCATGTCTCGTACCGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3085 | ACCAGTAAGAGGTTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3086 | CCAATCCAGAAGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3087 | TTTACTGAGACACGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3088 | CGGAGTCAGGATCGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3089 | TACGGTACAAGAAGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3090 | GGAATAAGTGACCAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3091 | CATCGGGGTGATGATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3092 | CGTCTACAGTGGAGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3093 | ATGGGAGAGGGCATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3094 | AACCGCGGTACATCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3095 | GATCGCGCAGCGTTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3096 | CACACCTTCACGAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3097 | ACACCGGGTCACTTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3098 | GGGCACTTCCTAGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3099 | ACTGAACCACGCGAAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3100 | ACCCACTTCAGCCTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3101 | GTGTGCGTCCTCGCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3102 | ATAACGCGTACCAGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3103 | AACTCTTAGTCGTTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3104 | CGTCCATCACGACTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3105 | GGGTCTGTCAGTCCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3106 | CCCTCCTGTCGCTTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3107 | ACATACGTCTAACCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3108 | CCACCTACAATCTACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3109 | CTTAGGACATCTGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3110 | CCTTACGTCGGCCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3111 | AACGTTGGTTGGTAAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3112 | GCTGCGACACTCGACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3113 | GCGCCAACAGATTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3114 | CACCACTAGGTAAACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3115 | ACACCAAGTGAGGCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3116 | GAGTCCGAGAGTAATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3117 | TCGTAGACAAGTAATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3118 | TTTATGCTCCGTCAAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3119 | CTGGTCTGTGGTCCGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3120 | CATCAGATCGCCCTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3121 | CACTCCAGTTAAAGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3122 | GGACATTGTGCATCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3123 | AGGTCATAGTGAATTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3124 | CCTACCAAGCCAGTTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3125 | AGATTGCGTACAGACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3126 | GCTGCTTGTACACCGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3127 | GATGCTAGTCGTGGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3128 | GTTCATTTCAAGCCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3129 | CGGACACAGCGAAGGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3130 | AGTGAGGGTATAGGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3131 | AACTCTTTCCTAGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3132 | CAGCATACAAGGACTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3133 | CCAGCGAGTAAACGCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3134 | CGTTAGAGTCGTTGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3135 | ACCCACTCACGCTTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3136 | GACACGCAGATATGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3137 | ACACTGACAGTCACTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3138 | AGAGCGAAGGATGTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3139 | ATAACGCAGGGCTCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3140 | GGCAATTTCGCATGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3141 | CTCGGGACAAGCCCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3142 | CACAAACAGGTGACCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3143 | CGATCGGTCAGTTCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3144 | CAGCAGCGTGCGCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3145 | AGGCCGTGTCTAGTGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3146 | TATGCCCTCTCTTGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3147 | GATCAGTAGGCGACAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3148 | GAGCAGATCACAATGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3149 | CTAATGGCACCACGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3150 | TCCACACGTGGCGAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3151 | CACACTCGTTGGACCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3152 | TTAGGCAAGCTCAACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3153 | TGTGGTATCTTGAGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3154 | TGAAAGATCCACGTTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3155 | CACAAACCAAACTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3156 | CTACGTCCACGCCAGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3157 | ATCACGATCTTGTTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3158 | CCCAATCCAGAGCCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3159 | GGATGTTCATGCCACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3160 | GGGAATGCAGGGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3161 | TTCGAAGAGAATTGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3162 | ACGATACTCCATGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3163 | AGTCTTTAGACGCTTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3164 | ATGGGAGTCCCAACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3165 | ACGGAGAAGTAGGTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3166 | TGAGGGAGTAAGGATT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3167 | CGACCTTCACGAAGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3168 | TGGGCGTCATCACGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3169 | TGGGAAGCAAAGCAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3170 | TTCTCCTCACAAGTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3171 | CCTAAAGGTGAGGGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3172 | TAGCCGGAGCTGTCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3173 | TACTCGCTCATCGGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3174 | GGAACTTGTAAAGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3175 | GATGCTAAGCTATGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3176 | TGGTTAGCATGAAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3177 | GGCCGATCACCCATTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3178 | GGAGCAAGTAGAAGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3179 | CAGCCGAAGCCTATGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3180 | CTTAACTTCCACTCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3181 | GTGGGTCAGAGGGCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3182 | GTGTTAGGTAATAGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3183 | TTAACTCCAGGACCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3184 | CTGATCCTCAACACGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3185 | GTGTGCGCAGCTGTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3186 | CTCTACGCAATAACGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3187 | GATCGATCAGTCCTTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3188 | CCTAGCTGTTCTGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3189 | GACAGAGGTCTACCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3190 | ACATGGTTCCTAAGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3191 | TCAGGTACATTTCACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3192 | TGGGAAGTCTGTTTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3193 | TGTGTTTGTGGCCCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3194 | TTCTCCTCAAGACACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3195 | GACGGCTAGTACACCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3196 | TGAAAGAGTACGCTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3197 | CGTTCTGTCTGCAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3198 | TTGGAACCACATTCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3199 | AGTGGGACATTTCAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3200 | ATAACGCCACAAGTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3201 | ACACCGGGTACCAGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3202 | GGACATTTCTTACCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3203 | GTAGGCCGTTTGTTTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3204 | GCAGCCAGTCATATGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3205 | CGAGAAGAGCGCCTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3206 | GTCTTCGAGTTGAGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3207 | ATTACTCCAGGTCGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3208 | GGCAATTTCCGCGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3209 | CATTATCAGGGATACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3210 | GACTACAAGTCTCGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3211 | GGAGCAACATCGATGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3212 | ACGTCAAGTGCCTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3213 | GAATGAATCAGAAATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3214 | TAAGAGAGTAAAGGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3215 | ATTGGACAGGACAGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3216 | GCGGGTTAGAGCTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3217 | GACTACAAGAGCCCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3218 | GTCGTAACATGTAGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3219 | CCTTCGACACAAGCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3220 | GACGTGCTCGTATCAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3221 | ACTGTCCAGGATCGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3222 | AAGGTTCTCGGCTACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3223 | TACAGTGTCAGCTCGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3224 | GATCGCGAGTTCCACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3225 | GATCGATCATGCTAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3226 | TGCGTGGAGCTCCTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3227 | CGTGAGCCATAACCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3228 | ATAGACCTCTTGTATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3229 | CCACTACGTAAAGGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3230 | CTCATTATCCAATGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3231 | GCTTGAATCTGCAAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3232 | GAGGTGATCGGCGCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3233 | ATTGGTGGTATGAATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3234 | CGGAGTCAGTGTGAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3235 | TGAGAGGAGCCAACAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3236 | AAGACCTAGACCGGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3237 | ATCACGAAGCCAGTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3238 | CTGCTGTGTAGCTGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3239 | CGTCTACCAACGCACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3240 | CCGTACTAGTTGAGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3241 | AAACGGGGTAGCGCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3242 | CGACTTCAGGCCCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3243 | GATCAGTAGAACTGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3244 | TCGCGTTAGTCCGTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3245 | CGTAGCGAGCTGTTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3246 | GTGCATACAATAGAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3247 | GCGACCATCACGCATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3248 | TCACAAGTCTGGCGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3249 | GGGAGATAGTATCGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3250 | GTCCTCAGTCGCATAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3251 | TGACGGCTCTTCGAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3252 | CTAAGACGTAGCGTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3253 | CTCGAAACAACGATGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3254 | GTTTCTACAAGAGTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3255 | TTCGAAGTCGTCCAGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3256 | CGCTATCGTACCGAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3257 | TTGAACGCACTTCTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3258 | GTCGTAACACCGGAAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3259 | TACGGTAAGTATGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3260 | TTAGGCAAGTCACGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3261 | TGGGAAGAGGACATTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3262 | CTTCTCTTCCCAAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3263 | GACCAATCAATCCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3264 | TCAGGTAAGTTACGGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3265 | CTAGCCTAGTGACTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3266 | CTGAAGTGTCGCGAAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3267 | CTCGAGGGTGCGAAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3268 | CTCGGAGTCACTTCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3269 | CGTGTCTTCCTCGCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3270 | CAGCATAAGCCAACAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3271 | TCGGGACCAATGGACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3272 | GGAATAATCATTGCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3273 | TACAGTGTCGCTAGCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3274 | ATGGGAGGTATAGGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3275 | AAAGATGTCGCTTAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3276 | ATCTGCCCATTTCACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3277 | CATTATCGTACGCACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3278 | TACTTACGTCGCGAAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3279 | GAAGCAGTCTTGAGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3280 | GGAAAGCCACAAGTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3281 | TACTTACGTTCGTTGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3282 | AAGGAGCTCTGTCAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3283 | TGCACCTCAGCCTTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3284 | AAAGATGGTAAGTTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3285 | CGCTTCAAGCTCTCGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3286 | GGGTTGCTCCTTAATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3287 | TGCTACCTCAGGCGAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3288 | GATGAGGCAGGGTACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3289 | CTCGGGAAGGGAACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3290 | ACTTACTCACCTATCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3291 | GTATCTTAGCCCAATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3292 | CTAACTTAGTTAGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3293 | ACTTGTTTCGGCTTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3294 | TACTTACAGTGTGAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3295 | CGAGAAGAGAAACGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3296 | CTCGAGGAGGTAAACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3297 | GTCATTTCATATACGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3298 | CACATTTAGATGTTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3299 | TGACGGCGTGATGCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3300 | CGATGTAGTTCATGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3301 | ATAACGCCACTTCTGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3302 | TACACGATCCGCGTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3303 | ACGCAGCGTCAGGACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3304 | AGAGCGACAAATACAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3305 | GGCTCGACAGGGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3306 | TCGAGGCCAAATACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3307 | CCTACCATCTTGCAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3308 | TTCTCCTAGCGGCTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3309 | ACATGGTAGTCCATAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3310 | GATGAGGCAGCGTAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3311 | CGTTAGAAGGTGCTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3312 | GATGAGGTCTGTTTGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3313 | CATATGGGTCCTCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3314 | CATATGGCATACGCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3315 | CCTCAGTAGGAATGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3316 | GTGCAGCGTCCCTTGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3317 | CAAGGCCCAACTTGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3318 | TCGTACCCATTGGGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3319 | GGACGTCCATGATCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3320 | TACTTACAGGACCACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3321 | AAATGCCGTCCAACTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3322 | ATGAGGGTCCCAAGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3323 | TCCCGATGTTAAGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3324 | TACTCATAGCGTCAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3325 | AGAGTGGCAGGTCCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3326 | ACTATCTGTAGCTGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3327 | TGATTTCTCCCGGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3328 | GAACCTAGTAGCGCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3329 | AGACGTTAGGGCTCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3330 | TCAATCTGTGGGTCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3331 | ACATACGTCGCAAGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3332 | TGGACGCCATGTCCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3333 | GGACATTGTTTGTTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3334 | TGGTTAGGTACCGTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3335 | TCTATTGTCTGACCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3336 | GGGCACTCAGGGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3337 | GGTGTTATCGGAAACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3338 | TGCCCATCAGCATGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3339 | GGGTTGCTCTGCTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3340 | GATCAGTGTCCGTCAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3341 | GACGCGTCAACAACCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3342 | GGGAGATAGGACATTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3343 | CAACCTCGTTCGCGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3344 | TGAGCATCAGTAAGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3345 | CAAGTTGTCTAACCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3346 | GATCGCGCACAACGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3347 | CAGTAACAGGAATGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3348 | TCTGGAAGTTCGTGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3349 | ATTATCCCAAGGCTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3350 | GTGCAGCGTGTAAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3351 | TAGAGCTCATGATCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3352 | TCAGATGAGACATAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3353 | GTTAAGCCAGCATGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3354 | CCATGTCGTGACGCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3355 | CGCCAAGCACACAGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3356 | TGTGGTATCTCTGCTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3357 | AGAGCGAGTACCATCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3358 | ACGAGGACAGACAAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3359 | CTTAGGACAGGATCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3360 | CTTTGCGGTGCAGTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3361 | ACGAGGAGTCGAGATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3362 | TTCTCAAAGATGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3363 | TGCACCTGTCAGGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3364 | CTTTGCGCATGTCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3365 | TTCTCAATCGTATCAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3366 | CTTGGCTCACAGATTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3367 | GATCTAGCAGTCAGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3368 | TAGCCGGGTCCCTTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3369 | AGCTCCTAGTTCGCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3370 | ATCCGAAGTATCACCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3371 | TACGGTAGTGTATGGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3372 | TAAGAGAGTGACTACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3373 | CGAGAAGTCGGACAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3374 | CGCTTCACACTATCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3375 | CTGCGGATCAAGAAGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3376 | CCATGTCCATCCCACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3377 | TAGGCATTCGGAGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3378 | TTAGGCATCCGTCAAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3379 | TCCCGATTCACTCTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3380 | CCGTTCATCAGTTAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3381 | TAGTTGGAGGGTCGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3382 | GAAACTCTCGTCCAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3383 | AACTGGTAGTAGTGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3384 | ATAACGCCAAACAACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3385 | AACCATGAGGCCATAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3386 | TGGGAAGGTACCAGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3387 | AACTCCCGTTTAAGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3388 | CTAAGACAGGGCATGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3389 | AGGGAGTCAAGTACCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3390 | CCAGCGACAGGTTTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3391 | TTGGCAAAGACGCTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3392 | TCTCTAATCATCTGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3393 | CTTTGCGAGTCTTGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3394 | CACCACTGTGCTCTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3395 | AACTCCCGTAAAGTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3396 | CGTCCATCAGATGGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3397 | TACCTATCACAACGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3398 | TTGACTTTCAATACCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3399 | TGTGGTATCCCTAACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3400 | ATAGACCTCATGGTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3401 | CATCGGGAGCGTTGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3402 | ACTTGTTTCATTGCGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3403 | ACTTACTCACAGACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3404 | GTTTCTAAGTCAAGCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3405 | AAGGCAGCACAGGAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3406 | CCATTCGGTCCAGTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3407 | CACTCCAGTAGAGGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3408 | ACTGAGTAGCCCAGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3409 | GGCTCGACACTATCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3410 | GGGATGACATTACCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3411 | CAGCTAACAGCGTCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3412 | TCACAAGGTTTGTTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3413 | AATCCAGAGATGGGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3414 | CAGAATCTCGGTTAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3415 | GGAATAATCCTTGCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3416 | CCGTACTTCAATCACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3417 | TTCTTAGAGCGGATCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3418 | AGTCTTTCAGCTCCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3419 | AGCATACCAAGTCATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3420 | AGCTTGAAGGATATAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3421 | AGTGAGGGTAGATTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3422 | TCCACACTCTCCCTGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3423 | AGGGAGTCAGCTTAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3424 | CTGATCCAGAAACCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3425 | GGACAAGCACTTCTGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3426 | GTCTCGTAGTACGATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3427 | GTGCGGTCAGAGCCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3428 | TTTCCTCAGGTGCTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3429 | GTCACGGTCTTCGGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3430 | GGCGACTGTCGTCTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3431 | TCATTACAGAGTGAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3432 | AAAGCAACATCCGTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3433 | GCATACACATTATCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3434 | CTCTGGTGTTCGCTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3435 | ATCTGCCTCCCAGGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3436 | GTAGTCATCTCGATGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3437 | TTCTACACAATACGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3438 | GAACATCGTCACAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3439 | GTCCTCATCTGGTTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3440 | CCTAAAGAGACATAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3441 | GCCAAATCACATCCGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3442 | CAGGTGCTCGAATCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3443 | GGGAGATGTGATGTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3444 | TTTGGTTGTCTGCCAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3445 | ACGGGTCTCGTTTATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3446 | GCTGGGTGTCTTTCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3447 | GGTATTGCACTAGTAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3448 | CGTGTAAAGACCGGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3449 | CTACATTAGAGTTGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3450 | TCAGCAAAGCTGGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3451 | GATGAAAGTATATCCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3452 | CACCTTGTCATGTCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3453 | TGGCCAGGTCAACATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3454 | GGACAGATCGTCTGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3455 | CACAGGCAGTCATCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3456 | ATGTGTGTCGCATGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3457 | TCAGCTCTCACTGGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3458 | TGACTAGAGCCAGGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3459 | AGGGAGTGTCGCTTTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3460 | TGCCCTAAGTGGAGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3461 | CGGGTCAGTATAGGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3462 | CATCCACAGAGGTACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3463 | GACCTGGCAGGTCGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3464 | AGCAGCCTCTGCTGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3465 | ACGTCAATCCCAAGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3466 | TCCACACAGAGGTACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3467 | CGTCCATTCTGTCTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3468 | GTGTTAGTCAGCTCGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3469 | CGGTTAAAGACCTTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3470 | ATTCTACCATCGGGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3471 | ACGGAGAAGGATGGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3472 | ACGATACGTGGTCCGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3473 | AGGGTGATCTGATTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3474 | TAAGTGCGTAATAGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3475 | GGGATGAAGGATGCGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3476 | GCTGCGAGTCTCACCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3477 | GTATCTTAGCTATGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3478 | GATTCAGTCAGTGCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3479 | CCAATCCAGTCCCACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3480 | TACTCGCAGAAGGTTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3481 | TGGTTAGAGGTCATCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3482 | CTCGTACCACTCTGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3483 | ATCGAGTGTTAAGTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3484 | GGGCATCCAGATCCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3485 | ATCCGAATCAGAAATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3486 | TCAGGTATCTTGCATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3487 | CACATTTCACATGTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3488 | CTCGTCATCGTACGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3489 | GCATGTACAAAGGAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3490 | GGAGCAAAGGTGATTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3491 | CATATTCAGCTGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3492 | GTCTTCGAGAGCTATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3493 | CCACCTAAGCAGACTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3494 | GCGGGTTGTTCGTGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3495 | GGACAAGTCAGCTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3496 | CTTCTCTAGTGGGATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3497 | GGATTACTCCAGAGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3498 | CTCGAGGTCTGAGTGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3499 | CTCCTAGCACCAGATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3500 | GACGCGTGTAATTGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3501 | GCTCTGTAGTTCCACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3502 | ACATCAGCACCCAGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3503 | ATTTCTGCATGGTAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3504 | AACTTTCTCGAGGTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3505 | TCGTACCCAAGCCCAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3506 | GAACATCGTGTGACGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3507 | CGACTTCAGCTGCCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3508 | GGATGTTGTACCCAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3509 | GCTTCCATCATAACCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3510 | CTGATAGCATCCGGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3511 | GGGAATGGTCATGCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3512 | CATGACACAACGATCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3513 | CGCTGGATCTGGTATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3514 | CTCTACGCACGCATCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3515 | CCGGTAGGTACATGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3516 | CAGCGACAGTCCTCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3517 | GGCGTGTGTCATCCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3518 | TGAGGGACATTTCACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3519 | TATCAGGTCCTCATTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3520 | TGAGAGGGTGGGTCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3521 | TTAGTTCCACTTAAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3522 | TTGCCGTCATCCCACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3523 | GGCCGATTCTGCGTAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3524 | GGCCGATAGAATTCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3525 | CGGGTCAAGTACATGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3526 | AATCGGTAGAATAGGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3527 | CAGCCGATCCCGGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3528 | AGGTCCGTCCATGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3529 | GATGCTATCGAGCCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3530 | ATCCACCGTCGTTGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3531 | TACCTTACATACTACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3532 | GGACATTGTAAGTGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3533 | GGAAAGCGTCAGATAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3534 | TGCGCAGTCTCGTATT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3535 | GCCTCTAAGTGTACTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3536 | CGTAGGCAGGGCTCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3537 | GCGCGATTCAGCATGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3538 | TGCCCATAGATCCCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3539 | CCACGGATCGGCGCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3540 | AGCCTAAGTAGTACCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3541 | CATGCCTTCAGGTTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3542 | TGACTAGGTGGCGAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3543 | GAACATCAGCCAGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3544 | GAAGCAGTCTAACTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3545 | AGCGGTCAGGTGCTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3546 | GTCTTCGCATGACATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3547 | GGACATTTCACGATGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3548 | ATCCGAAAGAAACGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3549 | CGATGTAGTGATAAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3550 | CTCGAAAGTGCAACGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3551 | CTCTAATGTTAAGAAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3552 | CGTTAGATCAGTACGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3553 | TGCTACCAGCCGATTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3554 | GCTCTGTTCTGAAAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3555 | TGCTACCTCCCATTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3556 | ATAACGCGTAGTAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3557 | GGCCGATAGCACCGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3558 | AGGGATGTCGAGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3559 | GTCACGGTCATGCATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3560 | CCTCAGTTCACAGGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3561 | AGCTCCTGTCAATGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3562 | CTCGTACTCGGCATCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3563 | TTCGAAGGTCAAAGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3564 | CACAAACAGTTAAGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3565 | GATGAGGTCCCACTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3566 | ATGCGATAGCTAGCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3567 | TCATTTGAGTGGGTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3568 | GTTCGGGTCCAGTATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3569 | AACTCAGAGCACACAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3570 | AGAGCGATCTGAGGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3571 | GGCTCGATCCAGTATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3572 | TTAACTCCAAGGTTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3573 | CTGATCCTCTCACATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3574 | AAAGTAGAGCCCTAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3575 | GTACGTACAGGGTATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3576 | TCAGCAAGTTACGACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3577 | CACAGGCTCTGCGACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3578 | TAGAGCTGTGCACTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3579 | GTGTGCGTCTTTCCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3580 | TTCTCAAGTTGATTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3581 | CACAAACTCCTTCAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3582 | ACTGATGTCACAGTAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3583 | AGGGAGTAGGGTATCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3584 | GCGCCAAGTTGAGGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3585 | CGTGTAAAGATCTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3586 | CTGCGGAAGGCCATAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3587 | TCTCTAAAGATCGATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3588 | TAGAGCTGTAATAGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3589 | CTTACCGAGGCTATCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3590 | ATCTACTTCCGCATCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3591 | AAGCCGCCATGGAATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3592 | GCGACCACACGGTGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3593 | AAACGGGAGAAACGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3594 | TGATTTCAGGACCACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3595 | TAGACCACATAGGATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3596 | CCCATACGTTGTGGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3597 | GTTAAGCTCACCCGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3598 | TATCAGGTCTGTGCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3599 | CCGTTCATCATGCTCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3600 | TACTTACGTTTGTTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3601 | TTGCGTCTCAGCTCTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3602 | GACTACATCAAACCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3603 | TGAGCCGAGGAGTTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3604 | AGGTCCGCATGTCGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3605 | GTGTGCGAGCTAGTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3606 | GTGCTTCGTCACTTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3607 | GAACATCGTGTGTGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3608 | GGTGCGTTCTGCAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3609 | TAGACCAGTAGCCTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3610 | CGTCTACCACCCTATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3611 | GACTGCGCAATAGAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3612 | GGATTACCACAGGAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3613 | AACTCTTCATATACCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3614 | ATTTCTGGTTATCCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3615 | GGCGACTAGGAATGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3616 | CGGACTGTCATTGCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3617 | TTTGTCAAGTGAACGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3618 | GATTCAGTCATCACCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3619 | ATTGGACAGTGGACGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3620 | GAAACTCTCCTATGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3621 | ACATACGCAAGAGTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3622 | TACCTTAAGAAGAAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3623 | CTCGAAATCTTAACCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3624 | CAGGTGCAGTGTACCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3625 | CCTTACGTCAGTTGAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3626 | TGAGCATAGCGATTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3627 | AAGACCTCATCTCGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3628 | CCATTCGGTGAGTATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3629 | CTTACCGAGAGGGATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3630 | AGTGGGACAACTGCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3631 | CTCGTCAGTCCAGTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3632 | TACGGTATCTTGCAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3633 | TCTTTCCTCATGTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3634 | GCGGGTTTCTGCAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3635 | GTAACTGGTATAGGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3636 | ATCCACCCAGCCACCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3637 | TACTTACCAGCAGTTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3638 | AACTCAGTCTGTTTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3639 | CTCGAGGGTTAGGGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3640 | CATCAAGCACGTTGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3641 | TGCCCATTCCAAAGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3642 | TACGGATTCGAACGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3643 | CTTCTCTCATTCGACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3644 | GATCAGTTCCTGCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3645 | TAAGCGTAGATCCGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3646 | TCGCGAGAGAGCTATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3647 | AGTTGGTCATAGACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3648 | CTAAGACGTCTCTCTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3649 | CATCAGAAGCTAAGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3650 | ATAGACCGTGCAGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3651 | ACCCACTGTACATGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3652 | CAGTCCTGTCTCTCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3653 | GATCGTAGTCGATTGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3654 | GCGCAACGTAAGTGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3655 | GGCAATTGTCCGTGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3656 | GGGATGAAGTGTCCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3657 | ACACTGACATGGAATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3658 | ATCCACCAGAAGCCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3659 | ATAAGAGAGCTAACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3660 | CCTATTACATACTACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3661 | GGGTTGCGTTGTTTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3662 | ACAGCCGCATCGGACC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3663 | CTACGTCAGACACTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3664 | GACACGCCAATCTGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3665 | CGATGTACATAGTAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3666 | AAAGATGTCGTTGCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3667 | CATGACAGTTGATTGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3668 | CAGATCACACGAAACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3669 | TGCCCTACAGGGTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3670 | TGAGGGAAGGCCATAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3671 | TGGCTGGTCATCACCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3672 | TGCGCAGAGGAGTCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3673 | GCTGCAGCACCAGGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3674 | GATCGCGAGCTGCCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3675 | GGTGCGTCAAGACACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3676 | CGACTTCTCCTGCAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3677 | CACATTTGTGGCTCCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3678 | TATCAGGTCTTCGGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3679 | CCGGGATAGACTAAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3680 | GGCTGGTAGCACGCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3681 | CAACCTCTCTGTCTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3682 | GGGAATGCAGCCTTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3683 | ATCGAGTGTGAGGGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3684 | TAAACCGGTGGGTCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3685 | TAGTTGGGTTAAGAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3686 | CTCTGGTCACCTCGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3687 | TCAGGTATCTTACCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3688 | GTCATTTCACCGCTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3689 | CCGTACTTCTACCTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3690 | TACTTGTTCAACGCTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3691 | CCGTACTCAGCTGCTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3692 | TGCCCATGTCCGCTGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3693 | GTCACGGAGTGTGAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3694 | ACTGCTCAGAGGTTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3695 | CGACTTCCAGTACACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3696 | ACGAGCCCACCAACCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3697 | GCGAGAATCTGCAAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3698 | TTATGCTAGGCTAGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3699 | CTGATAGCACACTGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3700 | CTTTGCGGTACCGAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3701 | TACGGGCGTTCACGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3702 | CCCATACCAAGCGTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3703 | AAGACCTAGACTTTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3704 | GCTCTGTGTGGGTCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3705 | AACCGCGGTTACCGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3706 | AAACCTGGTAAGGGAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3707 | GGAATAATCACGACTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3708 | ATGTGTGTCATTGCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3709 | CTGCTGTAGCATGGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3710 | CTTCTCTAGCCTTGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3711 | GGCCGATTCTACTATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3712 | GAAATGAGTTTAGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3713 | TAAACCGTCGTGGTCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3714 | CCTAAAGGTCCGCTGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3715 | GGATTACGTATCAGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3716 | ACGGAGACACCACGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3717 | CTGAAGTCAACACGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3718 | CACATTTGTTATCCGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3719 | GTTAAGCGTGGGTCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3720 | AGTAGTCGTTTGTTGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3721 | GGACAGACAGATTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3722 | CTTTGCGGTCGAAAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3723 | CAAGATCCACGAAAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3724 | GGCTCGAAGGATTCGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3725 | TAAGTGCAGTCTCAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3726 | TTGCCGTAGATATACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3727 | CATGGCGTCTATCCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3728 | GTCAAGTGTGGGTCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3729 | CCCTCCTTCCCAACGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3730 | ACGAGGAAGATGTCGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3731 | TTTGCGCAGGGTCTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3732 | TACTCGCCAGTGGAGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3733 | AAGGAGCTCTTGTTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3734 | CACCAGGAGCGATCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3735 | ACGATACGTCTCACCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3736 | CAACCTCAGCGTGTCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3737 | GAACATCCAACGATCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3738 | GTGCTTCCAATTCCTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3739 | GAACGGAGTGTTCGAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3740 | AAGGTTCAGTTCGCGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3741 | CGGACTGGTATGCTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3742 | CATCCACGTGGTAACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3743 | CAGAGAGAGATGCGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3744 | CACATTTTCCAGGGCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3745 | GACTACAGTGTGACGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3746 | TTTACTGTCATGTGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3747 | CGAGCCACATATGAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3748 | GACTGCGCAATGGTCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3749 | GCACATATCAGGCAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3750 | GGTGTTACACCTTGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3751 | CCGGTAGGTAGGACAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3752 | ATGCGATAGCTTTGGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3753 | GGAGCAAGTTCCTCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3754 | TCAGGATAGCAATCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3755 | AGCTTGATCGAGAGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3756 | ACGAGCCGTTGCTCCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3757 | TTCCCAGCATGCAATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3758 | CACAGTATCTGTGCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3759 | GGGAATGGTATAGTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3760 | TGACAACGTGCAACTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3761 | CTCACACCAGTCGTGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3762 | GGGTCTGAGATGGGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3763 | CGGTTAATCGTTTATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3764 | GCATGCGGTTCCCGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3765 | CGCGGTAAGGGCATGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3766 | CCTTCGAAGTGAACGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3767 | GGGACCTGTTTGGGCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3768 | CCCAATCAGAAGGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3769 | GAACGGAGTAAGGGAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3770 | CCTCTGAGTCAGGACA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3771 | TAGTGGTGTCCTCTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3772 | GACCAATGTACACCGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3773 | CGCGTTTTCAAACGGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3774 | GTACGTAAGCCCAATT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3775 | CTTGGCTGTCTGCCAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3776 | AGCAGCCTCCAGGGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3777 | CGACTTCAGACCTAGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3778 | CTGATCCAGGTACTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3779 | CATGCCTCATCTGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3780 | CCAGCGACACGCGAAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3781 | CAACCAAGTCAGAATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3782 | GACTACAGTCAGTGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3783 | GATCGATTCATCATTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3784 | CACAAACTCATCACCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3785 | ACACTGATCGTGGTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3786 | TGGACGCAGCATCATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3787 | TGATTTCCAACTGCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3788 | AAGCCGCCACGTCAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3789 | ACACCAAGTACTCAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3790 | CCACCTACATATGGTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3791 | CAGCAGCTCACATAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3792 | ATCGAGTAGGGAAACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3793 | CTAGAGTCAATCGAAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3794 | ACTGATGAGATGCCTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3795 | CTCAGAACAGCTGTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3796 | CTAGTGACAAGCTGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3797 | CAACCTCGTCCGAACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3798 | ACTGAACAGCTCCCAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3799 | CCTAGCTGTACGCTGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3800 | ACATCAGTCCACGAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3801 | CTGCCTAAGTAGATGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3802 | TCTATTGAGATATGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3803 | CTAAGACTCCCGGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3804 | CGGCTAGTCAAACGGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3805 | TGCCCATAGAGCCTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3806 | ATGGGAGTCCGAATGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3807 | CTCGTCACAGGCAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3808 | TCGCGAGTCATCACCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3809 | TTGCCGTAGAATCTCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3810 | CTTTGCGCAGTTTACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3811 | CATCAGAAGTACGTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3812 | TTCTCCTCAATGGATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3813 | TGAGAGGCATGCGCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3814 | TGACAACGTCATCCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3815 | TGGCGCAAGAGGTTGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3816 | CCCTCCTAGCTGAACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3817 | GAGCAGAGTCAGAAGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3818 | TCCACACGTTCTGGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3819 | GTGCTTCGTAAAGGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3820 | TTCTTAGCATCCTAGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3821 | GGAAAGCAGACTAAGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3822 | CATTATCGTCTGCGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3823 | TGAAAGAGTAGGGACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3824 | AGATCTGAGGTTACCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3825 | GACTACAGTACTCTCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3826 | ACTTGTTCATCCCATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3827 | CCTTCCCTCTGCAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3828 | GCTGGGTTCAGTTGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3829 | CATGCCTCAAACCCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3830 | TCGCGAGAGTGTACTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3831 | TGCTGCTTCACAGTAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3832 | GACGCGTAGTCCGTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3833 | ATTACTCGTTAAGATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3834 | CCTATTAAGTGTCCCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3835 | GTCCTCAGTATTACCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3836 | GCATGATTCCCAGGTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3837 | AACCGCGAGCCCAACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3838 | AGCATACGTGCTTCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3839 | GCGCAGTCAATTGCTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3840 | CGTAGCGCACGGTGTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3841 | GAAACTCAGTGAACGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3842 | TACCTTACAGTATCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3843 | TAGCCGGTCAAACAAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3844 | CGTAGGCCACACAGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3845 | AGGTCATCACACCGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3846 | TGGTTCCAGTTCGCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3847 | TGTGTTTCAGACAAGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3848 | GCCTCTACAGCTTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3849 | AAACGGGTCCAGAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3850 | CTCTGGTGTCTAAACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3851 | AGTAGTCCAAATCCGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3852 | GACTACAGTCTCAACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3853 | CTCGAAACAGCTGCAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3854 | AGGGTGACACAGGCCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3855 | TCTGGAACATGCAATC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3856 | TCATTACAGGTCATCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3857 | GTCCTCATCAACGGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3858 | CCAGCGACAGATCCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3859 | CGTGTAATCACCGGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3860 | ACAGCTAAGGCCCTTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3861 | CCGTTCATCGTCCGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3862 | ATAACGCCAGTGGGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3863 | GCTCTGTCAACACCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3864 | TCGAGGCCAGCCAGAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3865 | GTCTCGTGTGGGTCAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3866 | GAGGTGAAGGGAACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3867 | GACTACAAGATAGGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3868 | ACTGCTCAGGAGTACC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3869 | CGCGGTAGTGTCGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3870 | AACTCAGCATTCCTCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3871 | GTTAAGCGTGACTACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3872 | TGATTTCAGTGGAGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3873 | TGGACGCTCAGGCCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3874 | GTCGGGTCAGACAAAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3875 | ACGCAGCCACCGTTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3876 | AGATTGCCATCGACGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3877 | CTTCTCTCAAAGCGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3878 | CATTCGCGTACCATCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3879 | TTATGCTCACGTTGGC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3880 | ATCGAGTAGGTCGGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3881 | CACCAGGCAGTAAGCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3882 | TGACAACTCTGATACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3883 | AAGACCTCAGAGCCAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3884 | GGGTTGCAGAATTGTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3885 | CTTTGCGAGTACGATA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3886 | CGTAGGCAGTGTACTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3887 | CGGGTCACACTACAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3888 | GTACTCCAGTAATCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3889 | GATGCTATCTTAGCCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3890 | GTAGGCCTCGGTGTTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3891 | AGTGGGAGTTAAGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3892 | CCTCTGACAATCCAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3893 | TGCTGCTCAAGTAGTA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3894 | CGACCTTTCTCGAGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3895 | CCACTACGTGCAGTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3896 | GTACTCCGTAGCTTGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3897 | TGTATTCTCCCTCAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3898 | GGAGCAAGTAAGAGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3899 | TGGCTGGTCTTGACGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3900 | TTGTAGGAGGTGCAAC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3901 | ATCGAGTGTGCACTTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3902 | CTCAGAAAGATGGCGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3903 | ATTGGACCATGGTAGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3904 | AGATCTGTCCAGATCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3905 | GCGCCAAAGTGTTAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3906 | CTCGGAGCAGCTTAAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3907 | GTCTTCGAGTGCCATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3908 | GACAGAGTCGCCTGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3909 | TTCTACACAGATAATG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3910 | ACTGCTCTCAGCTTAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3911 | TCGTAGACATTGCGGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3912 | CGTTAGACACGACTCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3913 | TTTACTGTCGAGGTAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3914 | AGTGGGACAGTTCATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3915 | GTAACTGAGAAGATTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3916 | AAACGGGCACACTGCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3917 | AGGGTGAAGTGGTCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3918 | GATCAGTCACAGAGGT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3919 | AGCCTAATCTACCAGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3920 | TTAACTCAGTGAACAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3921 | ATGGGAGAGTTCGATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3922 | GAACGGAGTGACTCAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3923 | GTACGTACATGGTCAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3924 | GGTGTTATCGTCTGAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3925 | TGCCCATCATCTCGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3926 | GACGTGCCACCTCGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3927 | ACACCGGAGAGTAATC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3928 | GCGCGATCACGAAGCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3929 | TTTGCGCTCGAACTGT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3930 | GGATGTTCACCTATCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3931 | GAACATCAGATGTCGG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3932 | GACGGCTAGAGGGATA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3933 | GATCTAGCATCAGTCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3934 | GATGAGGCAGTCTTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3935 | GGGTCTGGTGCGGTAA | ERX6700457 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3936 | TGGTTAGAGAGAGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3937 | TCTCTAAGTGAAAGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3938 | GATCTAGGTACCTACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3939 | TTTACTGCACGGCTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3940 | CATTCGCGTTTGACTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3941 | CTTTGCGCACCAACCG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3942 | GACGGCTTCACCGTAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3943 | GCAGCCACAGACTCGC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3944 | GACTGCGCAGCGATCC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3945 | TTAGTTCGTTCCACAA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3946 | CACCACTAGCCTATGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3947 | CTGGTCTGTGCTTCTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3948 | TCATTTGCAACTGCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3949 | CTAGCCTCAATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3950 | TGGCCAGTCAGCATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3951 | CGTCCATTCTGCTGCT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3952 | ATTTCTGTCTGCAAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3953 | GCGGGTTAGAGCTGCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3954 | CCTCTGAAGATACACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3955 | GGGACCTTCTTGAGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3956 | GCGACCACACGCTTTC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3957 | CGAACATGTTGGACCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3958 | TATGCCCAGACCACGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3959 | TGGCTGGAGTTGAGAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3960 | CTAACTTGTAACGACG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3961 | CTCATTAGTACCGGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3962 | ACCAGTATCTTGAGAC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3963 | CATCCACTCGCAAACT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3964 | TACCTTATCGTATCAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3965 | GACTACAAGTGAAGTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3966 | CACACCTGTCTCTTAT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3967 | GTCAAGTAGCTTATCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3968 | CAGTCCTCAGCGAACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3969 | TCTTTCCGTGTAACGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3970 | ATAACGCGTTACGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3971 | GATCTAGTCGTAGGAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3972 | CACAGGCTCAAGAAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3973 | TCCACACTCACTGGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3974 | TTGTAGGAGAGTACCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3975 | TGAGAGGCATCTCGCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3976 | CGCTGGACAGTCAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3977 | CTCGGAGAGTCGATAA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3978 | GACTGCGGTGCAGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3979 | TCATTACCAGCAGTTT | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3980 | TCAGGTAAGAAGGGTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3981 | TCAGATGTCTAACTGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3982 | CCATTCGGTGAAATCA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3983 | TTTGCGCAGCTCCTTC | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3984 | GGATGTTCACGCCAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3985 | GCTCTGTTCAAAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3986 | ACGTCAAAGTGTACTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3987 | GTGCAGCCAAGTAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3988 | CGCTATCGTCGCCATG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3989 | TGTATTCGTCGTGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 3990 | TCTTTCCGTTATCACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3991 | TCAATCTGTATTAGCC | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3992 | TACACGAGTGAGGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3993 | CAGATCAAGCTCCTTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3994 | TTTGGTTAGAGGGATA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3995 | GGTGTTATCAGGTAAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 3996 | GCGCAACAGGATGGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3997 | GGAGCAAGTAATTGGA | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 3998 | CGTTAGATCGTAGGAG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 3999 | ATCTACTGTGCCTGTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 4000 | GTGAAGGCAGACAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4001 | GATGCTAAGCTACCTA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4002 | CGAGCCATCATGGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4003 | GAACCTAGTTCCTCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4004 | GATCAGTTCAACGGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4005 | TCGCGAGTCTGCTTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4006 | TTCGAAGTCGGCGGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4007 | ATGGGAGCAAGTTAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 4008 | TGGTTCCAGACCTTTG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 4009 | GTACTCCAGCTGAACG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 4010 | TTGCGTCAGAGACTAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4011 | CTGATAGCACATGGGA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4012 | GAACGGATCAGAAATG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4013 | ACGCCGAGTCATCGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4014 | CGCTATCTCTTCGGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4015 | CCGGGATGTAGTGAAT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4016 | ACCTTTAGTACATCCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4017 | GTACTCCGTACGACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4018 | GTCAAGTAGCTGCAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 4019 | TCGGGACGTAGGCTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4020 | AGTTGGTTCGTAGGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4021 | TCGTAGACAATCTGCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4022 | CGTAGCGAGAATGTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4023 | CTGATCCGTCTTGCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4024 | GTAGTCACAGCCAATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4025 | CTGTGCTGTGCAGACA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4026 | GAACATCAGGCCGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4027 | CAAGATCGTGACTACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4028 | ATGTGTGCAATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4029 | GCTGCAGGTGTGGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4030 | CTCAGAACACGAAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4031 | CTGTTTATCCCTAACC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4032 | ATGTGTGGTTATTCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4033 | AAATGCCTCCGCTGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4034 | AACCATGTCTCGATGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4035 | GGAAAGCGTGCAGACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4036 | CTAGTGACACCTCGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4037 | ACTTTCACACGCCAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4038 | CTAATGGAGACCGGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4039 | CTTACCGGTGAGTATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4040 | GTGCTTCAGGTGCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4041 | CGTTGGGGTGCCTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4042 | AGTTGGTGTAAGGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4043 | CGGTTAAGTCTTGTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4044 | AAACCTGAGCGGCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4045 | CTCGAAAAGGCAGTCA | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4046 | CTGCTGTGTTCCAACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4047 | AGGGTGAAGAGTAAGG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4048 | CGGTTAACATGGTAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4049 | TTCTCCTAGGGTGTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4050 | CAAGGCCAGACGCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4051 | GGTGCGTCACGGCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4052 | GACGTTAAGATCCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4053 | GACAGAGGTCTCTCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4054 | ACATCAGCAATTGCTG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4055 | ATCTGCCGTTCATGGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4056 | CATCGAATCACGAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4057 | TGAAAGACATGCTAGT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4058 | GACGCGTCATGGTTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4059 | CCGGGATCAATCCGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4060 | GACTGCGCACGTGAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4061 | GGGTCTGCATAGTAAG | ERX6700457 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 4062 | AAGCCGCGTTCTGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4063 | GTTCTCGAGGGATCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4064 | CACACCTCATACGCCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4065 | GACGTGCCATCACCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4066 | TAAGAGATCCACTGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4067 | CGAGCCAAGGCGCTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4068 | ACGCAGCGTCCTAGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4069 | ACAGCCGTCATGTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4070 | TGGGAAGTCATATCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4071 | ACGGGTCCAGTTCATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4072 | AGGGATGAGCCACCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4073 | GTGCGGTAGTGTTGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4074 | GGAATAATCTGAGTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4075 | GTCCTCAAGTGGGCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4076 | AAAGCAAGTGATGTCT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4077 | GCATGCGAGGGTTTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4078 | GGACATTCAGTACACT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4079 | TGTCCCAGTTGATTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4080 | TTGTAGGAGAGGTTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4081 | ATTGGACTCGCATGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4082 | GAACGGATCGTACGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4083 | TACGGATGTATAGTAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4084 | AAACCTGTCCGTCAAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4085 | ACGGAGATCATGTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4086 | CGTTCTGGTACTTAGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4087 | TGTGGTATCATGTCTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4088 | AGGCCACGTCCGAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4089 | CCTCAGTCACGGCGTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4090 | TCGGTAAGTAAGAGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4091 | GCACATACAGCGTAAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4092 | CGTTCTGGTCGTCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4093 | CAGTCCTGTATGGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4094 | CAAGATCAGTCTCGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4095 | CGACTTCGTCTTCTCG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4096 | CTTACCGGTCCGAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4097 | GTCATTTCAGCTGTGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4098 | GCGCAGTTCCTCATTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4099 | CGCGTTTCAGCTGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4100 | TAAGCGTCACAACTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4101 | GCGCAACCATCAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4102 | CACACAATCGTGGTCG | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4103 | CTCGTCACAATGACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4104 | CGGGTCACACCTATCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4105 | CCGTTCAGTGGCGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4106 | TTCCCAGAGTTCCACA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4107 | CGATGTACATACTACG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4108 | ATCATCTTCTTTACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4109 | TCGCGTTGTCGCTTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4110 | ACGCAGCCACATTCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4111 | CCTAGCTAGTCACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4112 | CGTGTCTTCGTACGGC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4113 | CCTACACGTAAACCTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4114 | GCGACCATCAACACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4115 | CTGCCTACACAGACTT | ERX6700458 | ERP132587 | testis | Pachytene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4116 | GTACTTTGTTGCGCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4117 | GGACGTCGTAATAGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4118 | GGAAAGCCAGGTGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4119 | TTTGCGCTCCACGTGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4120 | ACTTACTGTCATTAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4121 | TGTTCCGCACAGGAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4122 | GAAGCAGGTACAGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4123 | ACGTCAAGTAGCAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4124 | CAAGGCCAGTAGGTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4125 | GGCTCGACAATGGTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4126 | TGACAACCAGACAGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4127 | GTGCGGTCAGGGTATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4128 | TGTATTCCAGCCAGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4129 | ATGAGGGAGGCTCTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4130 | CTCGGAGAGTAGTGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4131 | AGCATACGTGTTAAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4132 | AACACGTTCAGGCGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4133 | GGACATTGTCGCGGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4134 | TTTGGTTGTTCAACCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4135 | GTATCTTTCTACCTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4136 | GGAGCAAAGTTCGCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4137 | GGGTCTGAGAGAACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4138 | GCGCCAATCAACACCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4139 | TAGACCACAGAGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4140 | TCTGAGACACCAGCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4141 | ATCTACTAGCACCGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4142 | CCTATTATCGAACGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4143 | TTTATGCGTGTGACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4144 | GCATGATAGTACGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4145 | TCATTTGTCAACCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4146 | CGTCCATTCCCTCAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4147 | AGTCTTTTCATCTGCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4148 | TTGGCAATCACGCATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4149 | CTACATTTCATCTGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4150 | ACGCCGATCCATTCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4151 | CCACGGAAGAATTCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4152 | CACATTTTCGATGAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4153 | AGCTTGATCGTAGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4154 | TACGGGCCAGACGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4155 | CAGGTGCAGTGGACGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4156 | TAGAGCTTCACGATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4157 | CGAGCACTCCCTAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4158 | ACGAGCCGTCACACGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4159 | TTCGAAGTCATGTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4160 | ACGAGGACACAGACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4161 | GCATGATTCCTAGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4162 | ACTGAGTCAAGAGTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4163 | GTGCAGCGTTCAGCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4164 | ATGAGGGCACAGTCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4165 | TGAGCATAGATGCCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4166 | CTCGTCACAGTAACGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4167 | CATCCACAGGGCTTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4168 | AAGGCAGTCCGAATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4169 | ACAGCTACAAGCGTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4170 | CGTCAGGTCGGTCTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4171 | TGATTTCCAGTGACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4172 | CTCTGGTTCTTGCAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4173 | AACGTTGTCCGTCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4174 | TGTCCCACAACTGCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4175 | ACGGGTCCAATGAATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4176 | TGTATTCGTCTCTCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4177 | TGAGAGGCAAGGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4178 | CATATGGCACGCCAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4179 | GGCAATTTCATTCACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4180 | TGAGAGGAGTAGTGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4181 | CACCACTAGAGTAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4182 | AGTTGGTAGGGCTCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4183 | ATTGGTGAGACTTGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4184 | GTGGGTCAGAGGTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4185 | GGAAAGCGTCCGAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4186 | AGAGCGACAACGATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4187 | AGCGGTCTCACATGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4188 | AGCAGCCCAAGACACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4189 | CGAGCACCACGACTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4190 | TTAGGACTCCAGAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4191 | GACTGCGGTTCCTCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4192 | ACGCCAGTCTGTACGA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4193 | GCGACCAAGGCCCTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4194 | CCCATACTCGGAAATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4195 | CTCGTCATCGGTCCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4196 | AACTTTCTCGTCCGTT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4197 | ACGTCAACAGGGTACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4198 | GCGCAGTCAATCTGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4199 | CCCAATCGTAGCGATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4200 | AGCGGTCAGTGTGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4201 | GAACCTAGTAGAAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4202 | GGAACTTAGGCGCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4203 | TGAAAGACAATGGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4204 | TTGAACGCAGGGAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4205 | CTCGTCAGTATATGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4206 | ACGGGCTGTACATCCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 4207 | TGAAAGAAGCGTCTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4208 | AATCCAGCAGCTTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4209 | TCCACACGTAGCGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4210 | TCGAGGCGTCATTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4211 | CGGACGTTCCTCAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4212 | GGGTTGCGTCCGAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4213 | TTGGAACAGCCCGAAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4214 | GATCGCGAGCCAACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4215 | CCGGTAGTCGGAGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4216 | AGCGTATAGTGTTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4217 | CTGGTCTGTAACGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4218 | TGTGGTACAGGGATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4219 | TCGAGGCCATTGGCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4220 | TAGTGGTAGAACTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4221 | GACGGCTAGCCGCCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4222 | CCCTCCTAGAGCCTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4223 | GTGCAGCTCCCGACTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4224 | GTGGGTCCAACACCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4225 | TGCGTGGAGAAAGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4226 | GCATGTAAGTCATGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4227 | CTCGGGAAGTTACGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4228 | TGCGCAGTCTGGTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4229 | ATGAGGGGTTTGCATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4230 | GAATGAAGTTATCGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4231 | CTGCTGTTCGTAGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4232 | TGCCAAAGTATATGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4233 | AGTAGTCGTCTGGTCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4234 | TGCACCTCATCAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4235 | AGGCCGTAGGACAGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4236 | GAGGTGACACATCCAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4237 | ACTGAACCACGGTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4238 | CCTTCCCCAGGGATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4239 | GCAGTTAGTCTCGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4240 | ACATCAGTCGTACGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4241 | TGACGGCGTCTAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4242 | TGACTAGTCTTAGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4243 | CATTATCTCGTCCGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4244 | TACTCGCAGGAATCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4245 | TGGGAAGGTAGGGACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4246 | TTGGAACAGCGAGAAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4247 | CGAGCACCATGCTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4248 | GAAACTCGTTGTGGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4249 | TCGCGAGTCTACCTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4250 | CTAATGGCAGTGGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4251 | CTCGTCAGTAAACACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4252 | GTGAAGGGTTCGAATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4253 | TTGAACGAGGCTCTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4254 | CGAGCCAAGTGAACAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4255 | CGGACACGTAGGGTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4256 | GGGAATGGTTGTGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4257 | GTCACGGCAATGGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4258 | TAGGCATGTCATCGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4259 | TGACGGCTCTCTAGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4260 | AGCAGCCCACATCCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4261 | CATATGGCAATAACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4262 | CGTGTCTTCCCTCTTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4263 | TAAGCGTTCATGCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4264 | GGGACCTCAGGATTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4265 | ACATGGTGTCTTCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4266 | CCCTCCTGTCTGCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4267 | TTGCGTCCAAGCCGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4268 | ACATCAGGTCTAGAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4269 | CTGCGGAGTCCGTTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4270 | GCATGCGTCTCCTATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4271 | GCAAACTCATTGCGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4272 | GGACATTAGCCCGAAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4273 | TAGGCATTCGTTGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4274 | CTTAGGACAAGCTGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4275 | CAAGTTGCAAATTGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4276 | AGATTGCTCCCTCAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4277 | AGCATACGTGGGTCAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4278 | GAAATGACACGGTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4279 | TGCTACCCAAGCTGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4280 | TGGCGCATCGTACGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4281 | AGGTCCGGTGACGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4282 | TCACGAACACACAGAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4283 | GTGTGCGGTACAGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4284 | GGCTCGATCGGCCGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4285 | CCGGGATTCTGGTATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4286 | CTCGTCAGTCACAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4287 | CTACCCATCTTAGCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4288 | ACGGGCTCAACTTGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4289 | GTGCAGCTCTGATACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4290 | CGGTTAATCGAACTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4291 | TGGTTAGTCCGGGTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4292 | TGACAACAGTAGCGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4293 | CATCCACAGGGCACTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4294 | TCAGATGGTCGCATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4295 | GAACGGATCAACGGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4296 | CGTAGGCTCCACTCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4297 | CAGCTAATCAAAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4298 | CCTCTGACAGGGTACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4299 | TCGTAGACAGATGGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4300 | GGGCACTGTCGCATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4301 | CGAGAAGAGTGCAAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4302 | GCGGGTTGTTAAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4303 | ACAGCCGGTTCCTCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4304 | TCGTACCGTAAGGATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4305 | TAAACCGTCTGCTTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4306 | CAGCCGAGTTAAAGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4307 | AACTGGTGTTGCCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4308 | GGGAATGAGGTGACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4309 | GCACTCTTCTCCGGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4310 | GACGTTAGTCATATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4311 | TCGTAGACATGGTCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4312 | GACCTGGTCTCTGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4313 | TGACTTTAGGGCACTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4314 | TCCACACCAAGTCTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4315 | CAGATCAAGTGCCAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4316 | CTACCCAAGAAACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4317 | CTCTAATAGCAGACTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4318 | TGAGAGGAGGGTGTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4319 | CTGATCCTCCTTTACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4320 | CGGAGCTTCGAGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4321 | CATCGGGGTTAGTGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4322 | TGTATTCCACGTCAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4323 | ACTATCTGTGCTTCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4324 | TACGGGCTCCTATGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4325 | AGCAGCCCATCAGTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4326 | CTGAAACCATTAACCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4327 | GCTCCTATCAGTTTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4328 | GGGCATCAGTACTTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4329 | GCACATAAGCGACGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4330 | GCTGCTTCATTAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4331 | ATTCTACTCTAAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4332 | TAAGAGATCCGTTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4333 | AAGGTTCAGGATCGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4334 | AACTTTCAGTGTACCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4335 | AGTGTCATCTCATTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4336 | CATCCACTCCGAATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4337 | AGTGAGGCACGGCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4338 | AACCGCGCATCCGCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4339 | AGGGAGTTCTTCAACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4340 | TACTCATGTCTTGATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4341 | CTACATTCAGACAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4342 | TCGGGACTCGGATGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4343 | CTCTACGAGTTAACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4344 | AAAGTAGGTCAGCTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4345 | GTGCATAGTAACGTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4346 | CCATGTCAGTTGTCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4347 | TGAAAGATCTGGCGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4348 | GTAGTCATCGGCATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4349 | GCGACCATCACTTACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4350 | CCGTACTCATCGATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4351 | TTAGGACGTTGTGGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4352 | GGCGACTTCCCAGGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4353 | CGGACACGTAGCTAAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4354 | TTCGAAGCAGAGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4355 | GAGCAGAGTACCGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4356 | GACGGCTTCACATAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4357 | CTGAAGTCAGTGACAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4358 | CAACCTCGTTACGCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4359 | GTGTTAGTCCTTCAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4360 | CACACCTTCTCGATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4361 | ACAGCCGCACATTCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4362 | TGAGGGACAAGTTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4363 | GCTGCTTTCAATCTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4364 | CTCGTCAGTTACGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4365 | AACCGCGCACTGTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4366 | ACGGCCAAGGTGTTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4367 | GTTCGGGAGTGATCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4368 | CGATGTATCGAGAGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4369 | CCCAATCGTTCGAATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4370 | CAACCAAGTGCCTGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4371 | GGGATGAAGACTAGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4372 | AGCGGTCAGCGTTCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4373 | GGAATAACAAAGTGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4374 | GGCTCGACATCCCACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4375 | GACTAACAGGTGCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4376 | GTACTCCGTGTTTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4377 | GATGCTAGTACTTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4378 | AGACGTTAGGTAAACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4379 | TCTGGAAAGCACCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4380 | GTCAAGTGTAAGTTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4381 | AGATCTGCATTGAGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4382 | TTCTTAGCATCGGTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4383 | TACTCGCAGACTTGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4384 | ACGATACAGTAGATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4385 | TGCGGGTCATCACAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4386 | GAACCTAAGATGCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4387 | TACCTATGTCTTCTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4388 | CGCGTTTTCGGAAATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4389 | TCGAGGCAGTGAAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4390 | CTCGTACAGGACCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4391 | TTTGCGCCATAGGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4392 | CTCACACTCTACTTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4393 | CTTAGGAAGAGACTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4394 | CTACATTAGTGACTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4395 | GTCATTTGTACCTACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4396 | CCAGCGACAGAGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4397 | CTGCCTATCTTAACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4398 | CTGATAGAGGTCGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4399 | GCTGCGAAGACCTTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4400 | TTTGTCATCGACCAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4401 | ACGATGTAGCTCCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4402 | TCCCGATTCGCGGATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4403 | CCGTGGAGTTCGTTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4404 | TCTGGAAGTACCGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4405 | CCTCAGTTCCGCAAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4406 | TTGACTTAGTTAACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4407 | GCGCAGTAGGACCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4408 | CAAGATCAGGCAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4409 | TGAGAGGAGAGTCTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4410 | CTAGCCTAGCCGTCGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4411 | CTTAACTGTCAAGCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4412 | TCAGGATCACGGCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4413 | TTATGCTGTAACGCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4414 | CATATTCCACGGTAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4415 | GAAACTCGTCATGCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4416 | CAGTCCTTCAATCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4417 | AACTCAGCAACTGGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4418 | TGCTACCTCTCCTATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4419 | ATCTACTTCAAACGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4420 | CTTCTCTGTACCAGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4421 | CGAGCCACACGTAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4422 | CAAGAAAGTATATGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4423 | ATTGGTGAGCCCAGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4424 | GACGGCTAGATCCTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4425 | GAATGAAAGATGGGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4426 | GCGCGATCACCCAGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4427 | CCTACACGTACCGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4428 | ACGAGGAGTTCTGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4429 | AGGCCGTCAGATGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4430 | CCGTGGATCGAGAACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4431 | ATCATGGGTGAAGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4432 | TTCTCAATCTATGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4433 | ACGCCGACATTGGTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4434 | TTTGGTTAGTACGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4435 | TTCTACATCTGGGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4436 | CACCAGGGTCAGATAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4437 | CGACCTTTCCATTCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4438 | GTATTCTGTAGCCTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4439 | GATCTAGGTTGTCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4440 | CCACCTACAGGGATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4441 | AGCTCTCAGTACGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4442 | TTAACTCGTTGGTGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4443 | CTCGGAGTCCGCGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4444 | TATTACCTCACAACGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4445 | AAGGAGCCACTATCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4446 | AGCTCCTCACCTCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4447 | ATCCGAAAGACATAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4448 | TTCTCAAAGGCGCTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4449 | GGATGTTCAAAGAATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4450 | GATGAAAGTTGCGCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4451 | CATCGGGTCTGCGGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4452 | AGCTTGAGTGATAAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4453 | GGTGAAGCAGTTTACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4454 | TAGGCATTCGTATCAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4455 | CCTACACAGTGTACTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4456 | GGCGTGTCAAGTAATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4457 | CATATGGAGTTTGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4458 | TGCGCAGGTCCATCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4459 | CAGGTGCAGACAGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4460 | ACATACGCATCGATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4461 | TGACTTTTCTCCAGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4462 | TACTTACGTAAAGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4463 | TGAGGGAAGTTAGGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4464 | ATCCGAAAGTTACCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4465 | GAATGAAGTGATGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4466 | GCATGCGGTGCTTCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4467 | GGCGTGTTCTTGTACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4468 | AAGGCAGTCCTTAATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4469 | TGACGGCGTTCGGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4470 | CACCACTGTTGGGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4471 | TCAGGTACACATGGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4472 | CAAGTTGTCGACCAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4473 | TTGCCGTAGCCAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4474 | GTGTGCGGTTGGACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4475 | CACATAGCATTAGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4476 | ATAACGCCAGTTCATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4477 | TTCGGTCGTTCCTCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4478 | TGGTTCCAGACTCGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4479 | TGGGAAGAGCTAACAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4480 | CTGCCTATCCGAATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4481 | CGGGTCAGTATGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4482 | TACGGGCGTAAACGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4483 | TTCGGTCTCCATTCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4484 | AGCAGCCAGCATCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4485 | AGTGGGAAGTGTCTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4486 | TCATTTGCAGCAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4487 | TCCACACTCATGGTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4488 | GAATGAAGTTCTCATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4489 | CTCGGGAGTTACCAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4490 | TTGCCGTTCTCGATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4491 | ATCTACTGTAGCTGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4492 | GAACCTACAGTTTACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4493 | GTCTCGTTCTTGCCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4494 | TCATTTGCACACATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4495 | TCTTTCCGTCTGGTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4496 | TCGGGACTCACAGTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4497 | AACGTTGGTGCACCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4498 | TAGCCGGAGGGTCTCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4499 | GACCTGGCAGCGAACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4500 | TTCTACACAGCAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4501 | GCAAACTGTTCCACTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4502 | CTAACTTTCCAAAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4503 | GCAGCCATCGTTGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4504 | CAACCAAAGTGGTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4505 | TACACGATCATTATCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4506 | ACACCCTAGGGCTTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4507 | CAGATCATCGTTGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4508 | TACAGTGTCGTAGATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4509 | GATCGATAGCCAACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4510 | AGGCCGTTCATGTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4511 | AGGGAGTTCTTCGGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4512 | TTTCCTCGTTCTGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4513 | AGCAGCCGTAAGGGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4514 | CGACCTTTCCTGCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4515 | CACAGGCCATGTAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4516 | CTCCTAGTCCAGTATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4517 | AACGTTGAGGGATGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4518 | AATCCAGAGCCGATTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4519 | CGGAGCTCAGACAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4520 | AGATTGCGTCTCACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4521 | CGACCTTCAAGTCATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4522 | ACGGAGATCTTAGCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4523 | CTCATTAGTAAACACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4524 | TTAGGACAGTGGTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4525 | CGCTTCACATCCTTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4526 | TCTCATACAATAAGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4527 | TGTCCCACATTGGGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4528 | ACATGGTGTCACACGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4529 | GCTGCGATCTCTAGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4530 | GGATTACGTGATGTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4531 | GGGAATGTCAAACGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4532 | TTTACTGAGTGCGATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4533 | CTGCTGTGTCGGCACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4534 | AGAATAGTCCGGGTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4535 | CCATTCGAGACACGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4536 | GCGCGATCAAGAGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4537 | GGCTCGAGTAGCGATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4538 | GTTACAGCAATGGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4539 | TGGCCAGTCTCTTGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4540 | GTCTTCGGTCGTGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4541 | ATTCTACGTTTGTTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4542 | GCACATACAGGCGATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4543 | CTCACACGTGTTTGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4544 | CACCACTTCTCAAACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4545 | CGAGAAGTCAAACCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4546 | GATGAAAAGCCAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4547 | CGCTTCACACTATCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4548 | ATTGGTGGTCCAGTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4549 | ACTGTCCAGCCACGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4550 | TCGTAGACAAACTGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4551 | CAGAGAGAGCTAAGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4552 | AGAGTGGTCACTTCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4553 | TACTTACAGCCCTAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4554 | ACCCACTTCAAAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4555 | AACCATGAGATAGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4556 | CATATTCCATAAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4557 | TGTGGTACAATCACAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4558 | TACTCGCTCTACTTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4559 | CTGATAGGTCACTTCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4560 | CCTATTATCGAATGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4561 | AACCATGTCTATGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4562 | ATCCACCAGCCGCCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4563 | CCACCTAAGGGAAACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4564 | GTTCTCGTCCTCCTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4565 | GCTGCTTCATTCGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4566 | ATCATCTAGTGTTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4567 | GCGCAACCATCATCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4568 | TACGGATAGTGTGAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4569 | CTGAAACCAAAGGAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4570 | ACACTGAAGACAAGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4571 | TTGACTTTCTTCCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4572 | TATCTCATCAGAGGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4573 | CTCGAAATCCGAATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4574 | TTCTACAGTTTCGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4575 | ATCATGGGTTCGGCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4576 | ACACCGGTCATGTAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4577 | CTGGTCTGTCAGAGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4578 | CTGTTTATCATGTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4579 | CTGCCTAGTCATCCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4580 | TAGTGGTCACCTCGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4581 | AACTCTTTCCAAGTAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4582 | TTTCCTCAGAGATGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4583 | GTAACTGCACGGCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4584 | CTTCTCTGTCTAGTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4585 | AGACGTTTCACCAGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4586 | CCTTCCCTCGCCATAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4587 | GCAAACTGTGTCCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4588 | TTCTTAGCATCACGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4589 | CGTCTACCACACAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4590 | CCACCTAAGGTGCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4591 | AGTGAGGTCTTGCATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4592 | CTTAACTCACTTACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4593 | GTATCTTAGCGATCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4594 | GCATGTAAGGAGTTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4595 | CTAACTTAGCCCAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4596 | CATGGCGGTAGCTCCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4597 | TCAACGAGTCCGTTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4598 | CGCTATCGTTGCTCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4599 | CATATGGAGACATAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4600 | GTTTCTAAGACTAGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4601 | GAGGTGAGTACATCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4602 | ACCCACTTCACCAGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4603 | CAAGATCAGCAGGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4604 | CCGGTAGGTACCGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4605 | AGGTCATAGCCACGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4606 | ATTGGACGTTAAGGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4607 | TCACAAGTCCCTCAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4608 | CTCACACTCGTGGGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4609 | ATTTCTGAGACAAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4610 | CACATTTCACCCTATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4611 | TACCTTACACATTTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4612 | GACGCGTTCTGATTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4613 | ACTGAACAGAGACGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4614 | CTGGTCTGTATGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4615 | CGTCAGGAGTAATCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4616 | CATATTCGTTATCGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4617 | CGCTGGATCTTAGCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4618 | GTTAAGCCACACATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4619 | CACATTTCAGGCTCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4620 | CTGCTGTCAATGAATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4621 | TGCGGGTAGAAGATTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4622 | TCAGCAAAGAAGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4623 | AGTCTTTAGCCACGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4624 | CACATAGGTCGGGTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4625 | GTCGTAAAGCACAGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4626 | GGCTGGTGTGCATCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4627 | ACGGCCAAGCTAGCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4628 | ATTATCCAGAGACTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4629 | AACTCTTGTGTCAATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4630 | TCACGAATCGAACGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4631 | CCCTCCTAGAGCTGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4632 | CCTTCCCAGACAGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4633 | CGCCAAGTCTAACGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4634 | CTCACACCAACGATCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4635 | CGTGTCTTCCCTAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4636 | AGAGCGAAGCTGTTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4637 | GTACGTATCAAGGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4638 | GCCAAATGTAAACCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4639 | ATCTACTGTAAGCACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4640 | GGATGTTCAAATACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4641 | CTAGAGTAGATGTTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4642 | CCTCTGAAGACACGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4643 | CTCGAAAAGCGCCTTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4644 | TGAGGGAAGTGGTAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4645 | CGGCTAGGTTCGGCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4646 | TCTATTGCAGGGCATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4647 | ACGAGGACACAGGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4648 | TCGAGGCGTTACAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4649 | TACGGTAAGTGACTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4650 | AACCATGCATTGTGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4651 | CATGCCTGTGACTCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4652 | AGCTCTCCAGGAATGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4653 | TCTATTGAGTCCCACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4654 | TGGTTCCGTGTGGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4655 | TTTGCGCGTGATAAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4656 | AAATGCCCATAGGATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4657 | CCTTCGAGTCAATACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4658 | GACGGCTTCCTGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4659 | CCTACCAAGCGAAGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4660 | CGCTGGAGTTTGACAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4661 | TGCCCTAAGCGGCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4662 | TGACAACGTATAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4663 | GATCGATAGCACACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4664 | CTGATAGTCAACGGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4665 | GCATGTACACCGAAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4666 | TGATTTCTCTTGTACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4667 | GAAGCAGGTTCCACAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4668 | GCTGGGTAGATGTTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4669 | TCAGGATGTATATCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4670 | CTAGAGTGTCACCTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4671 | AGGCCACCATTAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4672 | CGTGAGCCACAAGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4673 | GGTGAAGAGGGAGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4674 | TTGGCAATCACTCTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4675 | TACCTTATCAGTTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4676 | GAAGCAGCACACGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4677 | AGCAGCCAGGTAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4678 | TGAGCCGTCAACACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4679 | CTGATCCTCGTGGGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4680 | ATTCTACAGTGGCACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4681 | TCTCTAACATATACCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4682 | GCTCTGTTCATGTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4683 | GTTCGGGAGATGTAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4684 | CGTCCATAGACGCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4685 | GTTCGGGCAGCTTCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4686 | CATCGAAAGGAGCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4687 | CAGCTAAAGGCTAGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4688 | CAGCTGGCAATAAGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4689 | GATCAGTAGAGACTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4690 | CACCTTGCAATGGACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4691 | CAGAATCAGCAGCGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4692 | GCACTCTCATCACGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4693 | TTCCCAGCATGTCTCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4694 | GTTCTCGCACCAACCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4695 | ACGATACTCTGACCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4696 | ACGCCGAAGGAACTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4697 | CAAGATCAGGTGACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4698 | CCTACCATCATGTAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4699 | AGATCTGTCCCGACTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4700 | CTACCCACACGTTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4701 | ACTTTCAAGACAGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4702 | TGCGTGGTCGATAGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4703 | AACCGCGGTACAAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4704 | CGATGGCAGCTACCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4705 | CCGGTAGGTGGGTATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4706 | CTGCTGTGTTACCGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4707 | CGAACATTCATCTGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4708 | GGGTCTGTCATGGTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4709 | CTAGTGATCCAGGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4710 | ACCCACTGTGAAAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4711 | GTCAAGTTCAGCATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4712 | TACGGTAAGTTCGATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4713 | TGGGCGTAGGGAAACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4714 | CGCTTCATCAGAGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4715 | ATTCTACTCAAACAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4716 | GGCCGATCATAGTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4717 | AACTGGTCACTCGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4718 | CAGCTGGGTCGATTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4719 | CTCGGGACAATGGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4720 | CGGAGTCTCCTCAACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4721 | AGCCTAAGTCTCTTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4722 | GATGAAACAATGGAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4723 | CTCGGGAGTAGCCTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4724 | ACGATGTAGTAGTGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4725 | GGCTCGATCAAGCCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4726 | CCGGTAGGTATCTGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4727 | TCAGCAACACAACGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4728 | TTCTACATCACGATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4729 | CAGTCCTCAGGTGGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4730 | AACCATGTCTGGCGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4731 | AGTTGGTTCGATAGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4732 | AGCCTAACATGTTGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4733 | AAGCCGCTCTAACCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4734 | GGAGCAAGTCTCGTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4735 | AAGGCAGGTTTAGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4736 | CAACCTCGTGTCAATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4737 | CGTCTACAGGCTACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4738 | CACACAAAGCCCTAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4739 | GACAGAGGTGTGACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4740 | TGATTTCGTAATAGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4741 | CATATGGGTTCGAATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4742 | CTTGGCTGTACAGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4743 | CCACCTATCAGCCTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4744 | GTTAAGCTCGAGGTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4745 | CTGAAGTAGAATAGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4746 | AGTCTTTAGTGTACGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4747 | CAGTCCTAGTTACCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4748 | GGTGAAGGTTCTGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4749 | ATAGACCTCTGAGGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4750 | TCTGGAAGTAGCGCAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4751 | GAGGTGAAGGCCCTTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4752 | GATCAGTCATTCCTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4753 | CACCTTGTCTTCCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4754 | AGTGTCAAGGCACATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4755 | GAAACTCTCGCCCTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4756 | TCTTTCCAGATCCGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4757 | TCAATCTTCTTGCCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4758 | ATCCGAATCATTATCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4759 | GACGTTAGTATAGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4760 | TTTCCTCCAAACGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4761 | TACGGGCAGAGCAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4762 | GCAGTTATCTGTGCAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4763 | TCACGAAGTACAAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4764 | GTAGTCATCGCCGTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4765 | GTCCTCAGTCCATGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4766 | CTACGTCCAAGAAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4767 | GCGAGAACAGTATGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4768 | TCGGTAAAGAGTACAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4769 | GTTACAGTCTCTGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4770 | GTAGTCAAGGGCTTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4771 | CACACCTTCTTTACGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4772 | GTATCTTTCAAAGTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4773 | ATCCGAAAGTCAATAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4774 | AAGACCTCAATGACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4775 | CGTCTACGTGAAGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4776 | AACTGGTAGAAACCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4777 | GGACATTTCGACAGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4778 | TCATTACGTATCGCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4779 | GAAGCAGGTAAGCACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4780 | GCTCCTAAGCGGCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4781 | CGGCTAGAGCTGAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4782 | GTTCATTCAGCCAGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4783 | GGACATTAGCCCAGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4784 | AACCATGGTGCTGTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4785 | GACTGCGTCGTCCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4786 | GCATACAAGATGTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4787 | CATCAAGTCTTAACCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4788 | GAACCTATCAAACCGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4789 | ACGGGTCCACTGTTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4790 | ACGAGGAAGGGTTTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4791 | TTTCCTCGTGCTCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4792 | TTTACTGAGTACATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4793 | CCGGGATCACGCTTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4794 | AGCAGCCCACAGGTTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4795 | CCACTACTCTGTCCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4796 | TGTATTCAGTAGGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4797 | GACAGAGTCAGCTCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4798 | CACATAGAGTCCGTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4799 | CTCTGGTAGACAGACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4800 | GTCGGGTCAGACAGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4801 | CACCTTGGTCGACTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4802 | ATCCACCAGTTCGCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4803 | TGAGCATAGGTGCAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4804 | TGCCCATGTAAGAGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4805 | TAAGCGTGTATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4806 | TCTCTAAGTACTCTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4807 | ACCAGTATCGTGGACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4808 | CCTAGCTCAAACGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4809 | CAAGAAAAGTACGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4810 | GGGCATCGTTACTGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4811 | ACCAGTAAGCCACGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4812 | TCAATCTCAGTAACGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4813 | TGGCGCACATCACCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4814 | GTCGGGTTCACGATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4815 | CGCTTCAAGCCACGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4816 | GTTCGGGTCTGATACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4817 | GCGGGTTCACACTGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4818 | ACGCAGCGTGAAGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4819 | CACTCCATCCAGTATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4820 | ATCCACCGTTGTCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4821 | GGCTGGTGTGATGCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4822 | TGCCAAATCCTATTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4823 | CTAACTTGTCGATTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4824 | AACTCAGTCACATAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4825 | TACTTGTAGAGGGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4826 | GGAACTTGTGTGCGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4827 | CTGCTGTTCACCTTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4828 | AGCGTATGTACTCGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4829 | TGGCTGGTCTACCTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4830 | CTCACACTCACTTATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4831 | ACTGTCCAGTACATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4832 | CTCATTATCCCTTGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4833 | ACATCAGGTATAGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4834 | CTAGCCTCACATCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4835 | TTGTAGGAGAGGGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4836 | CAGCATACAACACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4837 | CATATGGTCTAACTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4838 | TATCTCAGTTCAGGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4839 | TCAATCTCACGGTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4840 | TCTTCGGCAAGCTGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4841 | CTCGTCATCGCGTTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4842 | CTCTGGTGTTATCGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4843 | TCGTAGAGTCCGAAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4844 | AGAGCGAAGATGGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4845 | TTCGAAGGTCCGCTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4846 | AAGCCGCGTGGCCCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4847 | GTCACGGGTAAGTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4848 | CTAAGACAGTACCGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4849 | AAGCCGCCACTATCTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4850 | TATTACCGTAGCCTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4851 | GTTACAGGTGTTCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4852 | CTACACCAGAATTGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4853 | CGTCTACAGTGCCATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4854 | GGTGCGTTCACTATTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4855 | CTTCTCTAGTGGGATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4856 | TTCTCAACACGAGAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4857 | AGCTCCTCACTATCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4858 | CCGTACTGTTGGAGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4859 | TTGTAGGCACATTCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4860 | TATTACCAGAAACCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4861 | CCTATTATCGCAAGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4862 | TCCCGATAGACAGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4863 | CATGGCGGTTGGACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4864 | GATGCTATCACAAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4865 | TTTGCGCGTTACGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4866 | TCTCTAAAGTACGCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4867 | GATCTAGTCGAGGTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4868 | ACGTCAATCGTGGGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4869 | ACACTGATCTTACCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4870 | GCAGCCAGTGTGGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4871 | GGATGTTCATGTCGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4872 | CGAATGTCAAATACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4873 | TCAGATGAGCAACGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4874 | CACATTTCACGAAATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4875 | ACGCAGCTCCCGACTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4876 | TCAGCTCTCATGTCTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4877 | ACTGAACCACTATCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4878 | GTAACTGGTTGTTTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4879 | GAACCTAGTGATAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4880 | TTTACTGAGAAACGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4881 | TTAACTCCAGTATCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4882 | CCTCTGATCTCACATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4883 | CATTATCAGCGAGAAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4884 | TCAATCTCAATCCGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4885 | GGGCATCCACTCTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4886 | GTAACGTAGGCCCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4887 | ATCATCTCAGTCTTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4888 | TCGAGGCAGGGAAACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4889 | CGGTTAATCTATGTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4890 | CATCAAGTCGTTACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4891 | AACTCAGGTGCACTTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4892 | TAGTTGGTCTTGTTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4893 | CCCAGTTAGGTAGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4894 | GCATGTAGTCTCACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4895 | ACGTCAACAGATGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4896 | CTCGTCATCGTCCAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4897 | TTCTCAAAGCGATGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4898 | GTTCATTAGGAGTTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4899 | ATTACTCGTATCGCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4900 | TTGGCAATCCGAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4901 | GTAGGCCCAGCAGTTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4902 | CTCTGGTAGTTCGCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4903 | CACTCCATCTGGTTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4904 | CGGAGTCTCTCGATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4905 | CACTCCAGTGTCTGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4906 | CAGATCAAGTACGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4907 | TACGGGCCACAACTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4908 | ATCCACCCAGTCTTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4909 | TTATGCTCACCACGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4910 | CGCTATCAGGGAGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4911 | TTAGTTCTCAGTGTTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4912 | GTATTCTCAATGGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4913 | TTCTCAAAGAACTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4914 | GTGTTAGTCGGAAACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4915 | TCACGAAAGCTGAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4916 | CCTAAAGAGCCCAATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4917 | CGAGAAGTCCGCATCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4918 | TACCTTACAGGATCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4919 | CTAAGACGTACCGTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4920 | ACGATGTTCACCCGAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4921 | TACCTATTCTTACCGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4922 | CGAGCCAAGAATGTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4923 | GTAACTGCAGTAAGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4924 | ACGATACAGCTATGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4925 | CACAGGCCATCCTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4926 | TGAGAGGAGATCGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4927 | AAAGCAATCAAAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4928 | CCTACACAGCTCCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4929 | TAAACCGCACTGCCAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4930 | CCCAATCTCAACTCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4931 | TCTTCGGCATCCGGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4932 | TCAGCAACACAGATTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4933 | TACTTACTCGGCGCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4934 | TAGTGGTTCCTCCTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4935 | TAAGAGATCTCGATGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4936 | CACATAGCAATCTACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4937 | ATCCGAATCTTCATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4938 | ACATACGGTGCGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4939 | CACATAGGTGTCGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4940 | TCAGGTAGTTGTTTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4941 | TCTCATATCTCGTTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4942 | AAGCCGCAGCTGTCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4943 | CTACCCAAGCTGCCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4944 | TTGTAGGTCCTCAACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4945 | ACTGATGAGTCATCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4946 | GCGCAACAGGTTACCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4947 | GTGCTTCGTCACAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4948 | TTGTAGGAGCGTAATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4949 | CTGCTGTGTTTACTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4950 | TGGGCGTCATGGATGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4951 | TATGCCCAGGGCATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4952 | GGCTGGTGTCGAATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4953 | TAAGAGATCAGCACAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4954 | CGGAGCTTCAGCCTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4955 | CTAATGGCAATCGGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4956 | AAGGCAGTCGCATGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4957 | AGCATACTCATATCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4958 | AGTTGGTAGTTGAGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4959 | GCATGATAGTGGAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4960 | CACACCTGTACAAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4961 | GGAAAGCCAGGGTTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4962 | GATGAGGTCCACGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4963 | TCGGTAAAGGCTACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4964 | CCTTCGATCATCGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4965 | ACACCCTTCAGTTTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4966 | GGCGACTGTTTACTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4967 | GGAATAACAGTAAGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4968 | CAGCTAACATCATCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4969 | GGACGTCTCAGAGGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4970 | CAACCTCAGAGAACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4971 | TGCTGCTAGGTTACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4972 | ATTTCTGAGCGTTGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4973 | CTGGTCTTCTCAAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4974 | CATATGGAGCGCCTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4975 | AAACGGGTCCGCATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4976 | AGTGTCACAGACACTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4977 | CGCTGGATCAACACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4978 | AGTGAGGGTTTGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4979 | ACGATGTGTGGACGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4980 | TTGGAACAGAGATGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4981 | TGTGTTTTCTTGAGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4982 | TTCGGTCGTTCGCTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4983 | CTCGAAACAGCATACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4984 | ACATACGGTATATCCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4985 | ACGAGCCTCCGAATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4986 | TAAGCGTAGGTGCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4987 | AGTTGGTAGAAACCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4988 | CGTCCATGTCATTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4989 | ACATACGCAGAGTGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4990 | ATCATCTGTTCCGGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4991 | CACTCCAGTGTGCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4992 | AAGCCGCCAGGATTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 4993 | GACTGCGGTAAACACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4994 | TACTCATTCAACCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4995 | CCACGGACAGCTATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4996 | CCTTTCTGTCCCTACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4997 | TCTGAGACAAGTCTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4998 | GCCTCTAGTATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 4999 | CACCTTGAGCCGCCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5000 | GACCTGGGTCGCCATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5001 | GGCGTGTGTCAGAATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5002 | TCGGTAAGTACATCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5003 | CCACCTACAGCCTATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5004 | CGTCAGGTCACTGGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5005 | ACTGAACAGGTCATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5006 | AGGTCCGCAGGAATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5007 | ATGCGATGTGACGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5008 | ACCAGTATCTGCAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5009 | AGTTGGTGTCCCGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5010 | CCCAATCGTCGGATCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5011 | GTGTGCGTCACCGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5012 | CTCTGGTGTATAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5013 | ACGTCAAGTTTGCATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5014 | TGTTCCGAGGATGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5015 | CAGCATATCAACACAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5016 | GGGATGAGTAGGACAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5017 | TGAGCATAGCTAGTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5018 | CCGTACTCACCTGGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5019 | GGTGTTATCGCGTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5020 | ATAACGCGTAAATGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5021 | CCTTACGTCTTGTATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5022 | CCGTGGACATATACCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5023 | GAGGTGAGTCTAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5024 | CCCATACGTAATCACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5025 | GATTCAGAGGACAGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5026 | ACCGTAATCTGATACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5027 | CTTGGCTCATGCATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5028 | TCTTCGGCATCACAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5029 | GACGTGCCAGGCAGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5030 | TGACAACAGCCTTGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5031 | CCCATACAGTGCCAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5032 | ATTTCTGAGATGTTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5033 | TGCCAAAAGGTGGGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5034 | CATGGCGGTTATCCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5035 | TCAGCTCTCTGCTTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5036 | CGTGTCTGTGAACCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5037 | AAAGTAGCAAAGCGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5038 | GAAATGATCAGTTGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5039 | CTTCTCTTCCGTTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5040 | GAGGTGACATCGACGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5041 | TGATTTCTCAGCAACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5042 | GAAACTCAGCCAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5043 | ATAACGCGTCCGCTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5044 | CAACCTCGTAATCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5045 | GGAATAAGTTAAGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5046 | AAAGTAGAGCGATATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5047 | GACGGCTAGCCAGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5048 | AGCATACGTGTTAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5049 | ACAGCCGGTGTGGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5050 | CGCTGGAAGCCTCGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5051 | GTCTCGTCAGCTTCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5052 | TTCTTAGTCACAGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5053 | CAGCTAACAGCTGTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5054 | AACTCCCAGACCGGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5055 | GATGCTACACGTAAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5056 | TACCTTAGTTATGTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5057 | AGCTCTCTCTACTCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5058 | TTTATGCGTTGATTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5059 | CACATTTCAGCGTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5060 | TCATTACGTTGCGTTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5061 | AACTGGTTCTCGCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5062 | CAAGTTGGTGTGGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5063 | GCTTCCATCACATGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5064 | CTCCTAGAGTTAACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5065 | CGGACACCAATGGATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5066 | GTAACTGTCTCTTGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5067 | ACGTCAAGTACAGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5068 | ACGATACAGAAACGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5069 | TACTCATTCAGCTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5070 | CCTTCCCGTACAGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5071 | ACAGCTATCAGCGACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5072 | ACTTTCAGTTCGCGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5073 | TATTACCCAATAGCAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5074 | TTGAACGGTTATGTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5075 | GTCACAATCCTTAATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5076 | ACCCACTCACGTCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5077 | GACACGCTCACCACCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5078 | CTCGGAGAGAATTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5079 | AAAGTAGCAGACGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5080 | CCTAGCTGTAATAGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5081 | CAGCTAATCCACGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5082 | ATCATCTGTCGGCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5083 | CCCTCCTGTCTGATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5084 | TGTGTTTGTACTTAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5085 | AACCGCGGTTAGATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5086 | GTAGTCATCGCTTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5087 | CGAATGTTCTCGAGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5088 | CCTCTGATCATAAAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5089 | GCCAAATAGCAGCCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5090 | CCTCAGTAGATGCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5091 | GGGTTGCCAGCCTATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5092 | CCTAGCTAGCTGTCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5093 | TGAAAGAGTATCAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5094 | GGAATAAAGCGCCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5095 | ATCATCTGTCCTCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5096 | TTGACTTGTACAGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5097 | CGTCCATGTCTAAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5098 | TTGTAGGCAAACGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5099 | GATCGTAGTACGCACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5100 | ATCTACTTCGCTTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5101 | GGGAATGAGAGAACAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5102 | CTCACACTCCTGCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5103 | TTCCCAGCACCGATAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5104 | AGCGGTCCAAGGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5105 | CTACGTCCAATCACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5106 | CGCTTCACAACACCCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5107 | TTGACTTGTCCTCCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5108 | AGGGAGTTCACGGTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5109 | TCTGAGAAGACACTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5110 | CCGGTAGAGGCAGGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5111 | GGCGACTGTCGGATCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5112 | CAAGAAATCCTATTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5113 | GGGTCTGGTCCGAGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5114 | GGAAAGCTCGAGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5115 | TGTGGTATCAAAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5116 | AACTCAGCAGCGTAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5117 | AAACCTGAGATCGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5118 | CTGCCTATCATTGCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5119 | TAGTTGGTCCGCATCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5120 | CAGGTGCAGACTGGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5121 | TGCCCTAGTGCAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5122 | ACCTTTAGTGTTTGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5123 | CTAAGACTCACCGTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5124 | TCGGTAACAGACGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5125 | CAGTCCTTCTTGCATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5126 | GTAGTCACACAGTCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5127 | CGATGGCGTTGAACTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5128 | TTGGAACCAGAGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5129 | GTCCTCACAGACGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5130 | ACTTGTTCACTAGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5131 | TCAACGAGTGAGTATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5132 | GGGCACTTCGTGGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5133 | ACGCCGAAGGGTTCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5134 | GCCAAATGTCACCTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5135 | CCTATTACACTAAGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5136 | TGTCCCACAACTTGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5137 | CAAGAAAGTCTAGAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5138 | CTGTGCTGTCTTCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5139 | GTTAAGCGTGCAGACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5140 | CCATTCGAGGGTTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5141 | CATCAAGTCTAAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5142 | TCTGAGATCCCTAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5143 | CTGGTCTGTGATAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5144 | CTCACACTCCAGTATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5145 | TCTATTGTCGAACGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5146 | GTTCATTCATTACGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5147 | CTTGGCTAGTTACCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5148 | AGTTGGTAGAACTGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5149 | TGCGTGGGTGCACTTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5150 | CTAACTTTCTATCGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5151 | GTGAAGGGTTCGGCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5152 | CTCTAATTCAATCACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5153 | GACCAATCAAAGCAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5154 | GCGCAACGTAGCGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5155 | TCTGAGAGTACAGCAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5156 | CTGCTGTGTTATCCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5157 | TTCTCCTTCGCTGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5158 | TTCTCCTAGAAGAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5159 | GGACGTCCACTTACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5160 | AGCAGCCTCCGGGTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5161 | TCCACACGTCGAAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5162 | ACGCAGCTCAAACCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5163 | CGTGTCTTCTTAGCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5164 | ATTATCCCATACCATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5165 | GACGGCTTCACTGGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5166 | TGGACGCTCGGATGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5167 | TCAACGACACGTGAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5168 | ATGTGTGAGGCGCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5169 | CTGATAGGTGCGGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5170 | GTCAAGTAGTTGTCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5171 | GTACTTTAGAGGTTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5172 | TAGACCAGTAGAGTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5173 | CGCGTTTCATTTCAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5174 | AGCGTATAGTGGAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5175 | TGAGAGGAGCTGTCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5176 | TAGTTGGCATCGGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5177 | CTGGTCTAGCGTTGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5178 | TGGTTCCAGAATGTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5179 | GATCAGTTCGACCAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5180 | CGTTCTGCACCCTATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5181 | TCTCATAGTCTAAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5182 | TAGAGCTGTAGCAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5183 | CCCAGTTCAAACTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5184 | CCCTCCTGTCGAATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5185 | GGTGAAGCAAGCGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5186 | GCCAAATCATTGTGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5187 | ATAAGAGCAATGTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5188 | GCGCAACAGTTTAGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5189 | CGATTGAGTGACGCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5190 | GGTGCGTAGGGCTTCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5191 | GAACCTATCGAGAGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5192 | GAACCTAGTACATGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5193 | ACAGCTACAGATTGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5194 | AACTGGTTCTGGCGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5195 | CATCGGGCATTTGCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5196 | ATCCGAAAGTTATCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5197 | AGCATACCACCCTATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5198 | ACGGGCTCAAACTGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5199 | ACACCGGTCTTGAGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5200 | ATCCGAAGTGGTCTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5201 | TTCGGTCCATGTAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5202 | TGGCGCACAGACAAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5203 | CTTAGGATCATGCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5204 | TTTGCGCAGATGGGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5205 | TCCCGATGTTCCACGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5206 | GTATTCTGTAAATACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5207 | GGGCACTGTTTCGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5208 | CTTACCGTCACCGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5209 | ATTATCCGTCTGATCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5210 | CAAGATCGTCATATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5211 | TTTGCGCAGAGTCTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5212 | TGCCAAACACAGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5213 | ATCTGCCCAAACGCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5214 | ACACCCTCACGTAAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5215 | AGCAGCCTCACGAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5216 | CTCGAGGTCTGTCTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5217 | AACTGGTTCAGCTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5218 | CATCGGGAGGTGCAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5219 | TTAGTTCAGAATTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5220 | TGCGCAGTCTTGTACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5221 | TATGCCCAGTCGAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5222 | TTGCGTCTCATCGGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5223 | CAACTAGTCTACGAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5224 | CAGCTAATCGGTTAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5225 | CACACCTGTTCGCTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5226 | GTGCAGCGTCCGCTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5227 | AGATCTGAGCCAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5228 | CGTTGGGTCTCGTATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5229 | AGGCCACAGATCCCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5230 | AAGGTTCGTATCGCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5231 | GGGCATCAGCTTATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5232 | AGGTCATGTCACCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5233 | CCTTCGAGTTCAACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5234 | CCTCAGTCACTCAGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5235 | CTGCGGAAGCTCCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5236 | GCACATATCCACGCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5237 | CGGGTCAAGGGAAACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5238 | CGACCTTTCTAACCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5239 | CTGTTTACACGACGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5240 | CACATAGAGTGAACAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5241 | GTCACGGAGGCCCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5242 | CAAGATCTCAATAAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5243 | TCGCGTTAGCTCCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5244 | AGAGTGGGTCCAGTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5245 | CTGAAGTGTGCGATAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5246 | CTACCCAAGCGAAGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5247 | CAGAATCTCTGCAAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5248 | GAATGAACACAGACTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5249 | CTGGTCTAGTTCGATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5250 | ACCTTTAAGACTTTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5251 | TCTATTGAGCGCTTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5252 | CAGCTAATCCTGCAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5253 | CACAGGCTCCGAGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5254 | TAGTTGGTCGCCTGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5255 | GACCTGGGTACCTACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5256 | ACCGTAAGTAACGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5257 | GATGCTAGTCACTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5258 | CTTAACTCATCATCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5259 | TCGAGGCCACAACTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5260 | TCAGGATAGTCACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5261 | ATTATCCTCCACGACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5262 | AGAGCTTAGACAAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5263 | TGCTGCTAGCGGCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5264 | CTGATAGTCAGTTCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5265 | GTGAAGGGTATAGTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5266 | ATTACTCTCCTAAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5267 | CTGAAACGTAGGACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5268 | TCAACGATCTGCTGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5269 | AAGACCTAGTACCGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5270 | CTTAACTGTATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5271 | GCGCAACGTCCGTGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5272 | GTGCAGCCAGCTGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5273 | CTGAAACCAATCACAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5274 | GCTGGGTGTCGTGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5275 | AGCATACCATGGTTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5276 | CCTAAAGAGTACATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5277 | AGAATAGAGGACCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5278 | CCTACCACATCCCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5279 | TGGACGCGTGCAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5280 | CACTCCATCTACCAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5281 | TTAGTTCGTCGGCTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5282 | TCTCTAAGTTAAGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5283 | TTCTTAGTCAAGAAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5284 | TCTATTGCACTTGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5285 | CCGGTAGAGGTGTTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5286 | TAGGCATAGCGGCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5287 | GTTCTCGCAACACCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5288 | AGATTGCAGACCACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5289 | AAAGTAGTCTTGTATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5290 | TAAGAGATCCATTCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5291 | ATCATCTCAACGCACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5292 | CTAGTGAAGGAGTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5293 | ACCGTAACACGGATAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5294 | CAAGTTGAGAGTCGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5295 | GCAGTTAAGAGCCTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5296 | CCATTCGGTCGGCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5297 | AGAGCTTCATCGTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5298 | GACGCGTAGTTGAGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5299 | TGAGAGGGTAAATGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5300 | AACTTTCTCTGGCGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5301 | GTAACTGAGTAACCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5302 | CGATTGATCTTTCCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5303 | CTGTTTAAGGTACTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5304 | GACCAATTCCCAAGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5305 | GTTTCTAGTGTGAAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5306 | AGGCCGTAGTCTCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5307 | CGTCCATCAATGGAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5308 | GATCAGTTCTGATTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5309 | CTAGCCTGTATGAATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5310 | ATTACTCCAACTGCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5311 | TATCAGGCACTACAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5312 | CCGGTAGAGGAGTTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5313 | ATCTGCCGTAAGGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5314 | TACCTTATCGCAGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5315 | CCTACACAGTCGATAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5316 | TGTGGTAAGATGGGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5317 | TACTTGTGTATGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5318 | AACGTTGGTACTCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5319 | CGGAGTCTCACCGGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5320 | GATGAGGTCCCAACGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5321 | GCAAACTTCGCATGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5322 | GACAGAGCATCTATGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5323 | ACTGTCCTCAAGCCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5324 | CCCAGTTTCAGTCCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5325 | TCATTACCATGATCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5326 | GTATTCTAGATATACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5327 | GAAATGAGTCCGAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5328 | AACACGTAGATGGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5329 | GGGATGACATATGGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5330 | TTTCCTCTCGCTGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5331 | TGGCGCACAGCTGTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5332 | TAGACCACAGATGAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5333 | CTTACCGGTATGGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5334 | TTCTACACAAGCGAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5335 | CGTTCTGCAGCTGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5336 | TGAGCATGTCATACTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5337 | AACGTTGTCAATACCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5338 | TTTGGTTTCGGTCCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5339 | ACTGCTCAGTCTCCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5340 | CATGCCTTCACTTATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5341 | TCACGAATCTTAACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5342 | ACGAGCCCAATGGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5343 | CTAGTGAAGACAGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5344 | CGAGCACTCGGCCGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5345 | CAGATCAAGAATGTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5346 | AGGTCATAGATAGGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5347 | AGGCCACTCCGTACAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5348 | GAAACTCGTAAGTGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5349 | CCTATTATCGTATCAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5350 | AGAGCTTAGGGTGTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5351 | CATGACATCCCGGATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5352 | ACACCAAGTCGATTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5353 | GTGAAGGTCATCGGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5354 | CTAACTTTCAAACCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5355 | TGGCGCACAAACTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5356 | GTGTGCGAGGCAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5357 | TTCTACAAGAGGTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5358 | CAGCCGACACAGCCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5359 | CCACGGAGTCGGATCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5360 | CGCGGTACACCGATAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5361 | ACCTTTATCGGATGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5362 | TAGCCGGCAGGATTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5363 | CTAAGACTCACGGTTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5364 | GCATACATCATAGCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5365 | CTTAGGATCGCATGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5366 | AGCATACGTATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5367 | TTGGCAACATGAACCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5368 | CTGTGCTTCAGTTTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5369 | AAACCTGTCGTGGGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5370 | AGGTCCGGTTGTCGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5371 | ATCTACTTCGAGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5372 | ATCCGAACATCTACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5373 | CAAGGCCTCCTGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5374 | GCACTCTTCTCGATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5375 | TGACTAGCAGGGTTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5376 | GCTGGGTAGCTACCGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5377 | AAATGCCTCTTCGGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5378 | CCAATCCAGGGATGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5379 | CAACTAGGTGATGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5380 | AGGCCACCAATCACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5381 | ACCTTTATCGCCATAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5382 | TATCAGGAGGGTCGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5383 | CTGTGCTGTCATATCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5384 | AGCAGCCTCCTTCAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5385 | TCAATCTAGTACGACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5386 | TTCTCAATCGTTACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5387 | GCGCGATGTAGCAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5388 | CACAGGCCAAGGGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5389 | CTCGGAGTCTCCTATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5390 | CTAACTTTCCACGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5391 | CAGTAACCATGTAAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5392 | ACGATGTAGTTGAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5393 | TTCGGTCTCCGCAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5394 | GTTAAGCTCTTCCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5395 | GACTGCGTCAGAGACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5396 | CATTATCCATCGATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5397 | AGCGTATGTATGAAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5398 | CTCCTAGTCCATGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5399 | ACTGCTCGTTGTCTTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5400 | CACAAACAGAGAGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5401 | CGATGTAGTTGTACAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5402 | CGTGAGCGTAAACGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5403 | TGGTTAGCAAGTTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5404 | GATCGCGTCCACGACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5405 | CGGACTGCAGGGATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5406 | GCATGATAGATGCCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5407 | TTTATGCGTTGGACCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5408 | GACAGAGGTGTTAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5409 | TACGGATAGCTCTCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5410 | ATTATCCCAGCTCCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5411 | GAAATGAGTTCGTCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5412 | GCACATACACTGTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5413 | ACTGAGTAGAGACTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5414 | TCAGGATGTCCAGTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5415 | CGCCAAGCACTCTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5416 | GGGTCTGGTGCCTGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5417 | TCACGAAAGTGTGAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5418 | CGAGCACTCCAAGCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5419 | TTGCCGTTCCGAATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5420 | TCTGAGAAGTTGCAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5421 | AGCGTATCATGCTAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5422 | GACGCGTAGAGTAATC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5423 | TGAGGGATCTGAAAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5424 | ACACTGATCTGATTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5425 | CGAACATTCTTTAGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5426 | CTCTAATAGTCCTCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5427 | CTTAGGAGTGCATCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5428 | AAAGCAATCTGAGGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5429 | GCAATCAGTCGTCTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5430 | CCACGGACAATGCCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5431 | TTGCGTCAGTGCGATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5432 | AGAGCTTCACAGATTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5433 | GCTTGAAGTCGGCTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5434 | TGATTTCTCACGACTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5435 | CCTAAAGTCTGCGGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5436 | GTGTTAGCACGAAATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5437 | TATGCCCCACATGGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5438 | GTCACGGGTGAACCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5439 | CTACGTCTCACCTTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5440 | GCTGGGTCAGCTCCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5441 | GATCTAGGTGACGCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5442 | GGTGTTAGTATGGTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5443 | ATTGGACCATCGGACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5444 | ACGCCAGCACGTGAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5445 | ACATGGTTCTATCGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5446 | CCCATACAGTGAACGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5447 | TATCTCATCAGTGCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5448 | GTACTCCGTCGGCTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5449 | CCGTGGAAGGGCTCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5450 | CGTCTACAGGCTACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5451 | CATTCGCTCGCAGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5452 | AACTCAGCATCTACGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5453 | GTGAAGGTCATCTGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5454 | TAGCCGGAGTGTTTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5455 | GTACGTACAGCCTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5456 | GCATACATCTACCTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5457 | TGAAAGAAGTGTCCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5458 | CATCGGGTCACGACTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5459 | TTTGTCAAGAAGGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5460 | CCTTTCTGTTCGAATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5461 | CCACCTACAAGCCATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5462 | GCTGGGTCAGCTGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5463 | ACCCACTAGAATTCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5464 | ATTATCCCAGCAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5465 | AAAGATGTCTTGTACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5466 | CTCACACAGTGTACTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5467 | GTTCGGGAGACGCACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5468 | GGACAGATCTCGAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5469 | TGTGGTACACAGAGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5470 | CTAGAGTTCTATCCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5471 | ACTGAGTCACAGAGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5472 | GTACTTTCACGGCGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5473 | CTACACCCATGGTAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5474 | ATGCGATGTGCATCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5475 | CGCTTCACATCGTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5476 | CAGCAGCAGAAGGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5477 | TAAGTGCAGGCATTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5478 | TCATTTGAGCAAATCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5479 | CCAATCCGTCGAAAGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5480 | CGCTTCACAATCTACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5481 | TCGGGACGTTCCCTTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5482 | GTCATTTTCACGCATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5483 | GGGATGAGTGCAGTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5484 | ATCTGCCCAGTTCATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5485 | CATCAAGCAGGGTATG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5486 | GCTCTGTGTAGTGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5487 | CTGTGCTCATCTATGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5488 | AGTGTCACAGTTTACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5489 | TCGGTAACACACGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5490 | ATGAGGGTCACCTTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5491 | AAAGATGTCATATCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5492 | TGACAACGTTTGGCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5493 | AATCCAGTCCGAACGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5494 | AGGCCACTCGAGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5495 | TAGAGCTTCCTTGCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5496 | ACCAGTATCCGCGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5497 | GACCAATAGTAGCGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5498 | CGTCAGGGTTGAGGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5499 | TCAGGATCATTCTTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5500 | GCCAAATGTCTCTTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5501 | AGTCTTTGTGCGATAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5502 | GAAATGAGTATCGCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5503 | GCGCAACGTCATACTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5504 | TGCTGCTCAGACGCAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5505 | TCAGGTAGTTCCACGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5506 | CCTAGCTGTTATCCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5507 | GAAATGAAGTGGGTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5508 | TACTTGTGTTAGTGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5509 | TGACTAGCACAACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5510 | CAGTAACCAATGACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5511 | AACTGGTCATGGGAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5512 | TGAGCATAGCTTTGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5513 | AGAGTGGGTCAGGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5514 | ACATGGTAGCTAACTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5515 | TTTCCTCCAGACGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5516 | CATGGCGTCGCCATAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5517 | ACATCAGAGAGGGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5518 | ATTGGACCACCCAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5519 | GGGAGATCACGGTAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5520 | TGGTTCCTCACCAGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5521 | GGAGCAAGTGCCTGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5522 | CATGACAAGTGTGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5523 | TAAGCGTAGGCTCATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5524 | GGATTACTCGATAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5525 | GGACATTTCTATCCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5526 | CAGCATAGTCTAAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5527 | TTCTCCTTCGTTACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5528 | AGAGCTTTCTCTGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5529 | TTTGTCAGTGCGATAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5530 | ACTTACTTCTCACATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5531 | CATCGGGGTTCCAACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5532 | CATCGAATCACCACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5533 | CGTAGCGCAGGCTGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5534 | TGGGAAGAGGTGTTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5535 | CAAGGCCTCACATACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5536 | GCATGATAGACCTAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5537 | CGGACACAGTTTAGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5538 | GACGTTAGTTCGCTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5539 | CAGTAACGTTATCCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5540 | GCATGTAAGCTCCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5541 | TCTGAGATCTCTGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5542 | CAAGATCTCACAGGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5543 | GCTCTGTTCGGAATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5544 | TACCTTACAATTGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5545 | GAATGAAGTCAAAGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5546 | ACGATGTGTACAGTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5547 | TTTGCGCGTACGAAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5548 | CTGAAGTTCCGCGGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5549 | CGCGGTACAGATCCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5550 | CCTTCGAAGTGATCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5551 | GGAATAATCTTGAGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5552 | TCACAAGTCTATCCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5553 | CGAGCACCAACAACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5554 | TACTCATGTCGGGTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5555 | CGGGTCATCTAACTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5556 | TCAACGAAGCGTAGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5557 | CGCCAAGGTTCCACGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5558 | ACGTCAATCTGTCTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5559 | TCACAAGCACTGAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5560 | CTGTGCTGTTGTTTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5561 | AAGGAGCTCACTGGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5562 | GCTTCCAAGAGCTTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5563 | CCTCAGTCAGTATCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5564 | TGATTTCTCCGCGCAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5565 | CACAGGCGTGATGTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5566 | CTACCCAAGTGATCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5567 | AGGTCATAGGGCATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5568 | AGTTGGTAGCTCCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5569 | GTATCTTTCTAGAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5570 | CGTGAGCGTAGCGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5571 | TTAGTTCAGGCTAGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5572 | ACACCGGCAGCTGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5573 | AGCATACTCAACTCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5574 | GACCTGGCAAGGACTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5575 | TGAGGGATCCGCATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5576 | AAGGCAGTCGTATCAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5577 | GTCAAGTTCTCCCTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5578 | TGCCAAATCCGTTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5579 | CCTTTCTCATTCACTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5580 | AGACGTTGTGCTAGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5581 | TAGAGCTAGCTAGCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5582 | GAAGCAGCAACGATCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5583 | ACGAGGATCCCTTGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5584 | CCGTACTAGGCTAGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5585 | CATCAAGTCTTAGCCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5586 | CCACTACAGACGCAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5587 | AGCATACAGTTTGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5588 | GACTGCGGTTGGGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5589 | GACTAACCACTATCTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5590 | CTTAACTGTGGAAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5591 | CGTAGGCCATCCTTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5592 | CGAGCACGTATTCGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5593 | GGACAAGGTTGCTCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5594 | GCCAAATTCAACACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5595 | CCTTCCCCACTTCTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5596 | ATAAGAGAGTCGAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5597 | TGCTGCTCACGAAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5598 | TTTGCGCGTCCGCTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5599 | GGACAAGGTACCCAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5600 | GCCTCTATCACAATGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5601 | GTTCTCGAGTTTGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5602 | GGCGTGTCAACACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5603 | TAAGTGCCATATGGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5604 | TACCTATTCATCACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5605 | TACTCGCGTTAAAGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5606 | TCTCTAAGTGCTTCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5607 | AGTAGTCGTCGTTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5608 | GACGGCTCAGGTCTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5609 | CCATTCGAGATCCCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5610 | CCGTACTAGCGCCTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5611 | TACGGATCACGGACAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5612 | TCTTCGGAGCCGGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5613 | GCAGTTATCAGATAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5614 | TGAAAGACATGTTGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5615 | GACGGCTAGCCGTCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5616 | GTACTCCAGTGAAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5617 | AAAGCAAAGTAGCGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5618 | ATCATGGCATCGATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5619 | ATCCACCGTTGTACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5620 | GCATGTACACTGTGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5621 | CACCTTGCATACAGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5622 | CACAGGCAGAAACCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5623 | CCTATTAAGCGACGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5624 | TTTGGTTCACAGGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5625 | AGGTCCGGTTATGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5626 | CGAGAAGCACAGGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5627 | GGAAAGCGTACACCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5628 | TGGCCAGGTTCAGACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5629 | TTCGAAGGTCCGAAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5630 | AACTGGTGTAGCTGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5631 | CGTTGGGTCTTGTCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5632 | GGAAAGCCACAACGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5633 | CATATTCGTCAGGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5634 | TCTTTCCAGTGGCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5635 | GGAACTTCAGCGAACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5636 | CAAGTTGAGCAGATCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5637 | GTCGGGTTCCCTTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5638 | ATTGGTGCACTGTTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5639 | CACACAAAGGCTCATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5640 | AAATGCCTCTTGAGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5641 | TACTCGCCATGACGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5642 | GTCTCGTTCGTCCGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5643 | GCTCCTATCGTCTGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5644 | TGGACGCTCACTATTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5645 | TAGTGGTGTTTGGCGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5646 | GTCATTTTCCGTTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5647 | GCAGCCACAGCCACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5648 | GCTTGAAAGTACGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5649 | AGCAGCCGTATAGGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5650 | CTTAACTGTAAGCACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5651 | GCATGATTCCATGAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5652 | GTGCATAGTTACAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5653 | AAACCTGGTTAAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5654 | CTGCCTAGTTACCAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5655 | CTCGGAGTCAGCAACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5656 | CTCAGAATCGTTGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5657 | CGTCAGGTCCGCTGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5658 | GTGTGCGAGATGTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5659 | GCATGTATCCGCGGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5660 | GCATGCGAGGATATAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5661 | TTAGGCAGTCACCTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5662 | GTGCATAAGTGAATTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5663 | CGGACACGTTAGTGGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5664 | TCGCGTTCATAACCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5665 | GATCGTAGTACGACCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5666 | GCATGATAGATCCGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5667 | TATCAGGGTCGGCACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5668 | AGTTGGTTCTACGAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5669 | GCGGGTTCACAAGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5670 | ATCACGAGTTCGGCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5671 | ACGGCCATCATGCTCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5672 | ATAACGCTCAACACAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5673 | TCCCGATGTCGACTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5674 | GCAAACTAGGGCACTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5675 | GAAACTCCACAGCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5676 | GAAACTCAGTACATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5677 | GCGACCACAACGCACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5678 | TCAGGATAGCTCAACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5679 | GAAATGACAAAGTGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5680 | TTCCCAGGTTACGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5681 | TGAAAGACACTGCCAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5682 | AACACGTAGTTAGCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5683 | AACTTTCTCCGGCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5684 | CGTGTCTCATGGGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5685 | TCGGTAACATCACAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5686 | CTAAGACTCTTCCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5687 | ATAGACCAGCTCTCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5688 | CACAAACTCAGAGCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5689 | AGTGTCAAGTGCGTGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5690 | TTGAACGAGTGGAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5691 | GCTTGAAAGATATGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5692 | CTCACACCAGGCTCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5693 | AGTCTTTGTGGGTCAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5694 | GCTGGGTTCCAGAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5695 | CGCTATCAGTGGAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5696 | CTCATTAGTCGAGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5697 | GTGAAGGCACATCCGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5698 | CCAATCCAGGTGACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5699 | CCTCAGTTCTAAGCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5700 | TCTCTAATCGTACGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5701 | GATCTAGGTCGACTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5702 | CTCTACGTCACGATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5703 | GTCTCGTAGTCGTTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5704 | CATATGGTCCCTAATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5705 | CAGTAACCACAGGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5706 | CGGACGTAGCTAGTTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5707 | TGCCAAACATCTCCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5708 | TAGTTGGTCACAACGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5709 | TGTCCCAAGAGACTTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5710 | ATCCACCCATGGTCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5711 | GCGGGTTAGCCGATTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5712 | CGTCCATGTACCGAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5713 | AAGGTTCTCACATACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5714 | CACCACTCAATCCAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5715 | CGTTGGGTCCTACAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5716 | CTACCCATCCAAGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5717 | CGGACTGGTGAAATCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5718 | TATTACCTCAAAGACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5719 | TCAGGATAGAGAGCTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5720 | CACATTTTCAACTCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5721 | TGCTGCTGTTTGTGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5722 | AAGGAGCTCTTGTACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5723 | GAATGAACATAGGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5724 | GACGCGTCAAGGACTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5725 | GCAGTTACACATCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5726 | GAACATCGTTTAGGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5727 | CTTACCGCAATGGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5728 | CCACCTATCTTCATGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5729 | CGTCAGGTCTCTTATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5730 | GTCGGGTTCGGTGTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5731 | AGCGGTCTCACCGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5732 | TTGCCGTTCTAGAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5733 | TGACTTTCAACTTGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5734 | CTAATGGTCAGGCCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5735 | TACACGAAGGTGGGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5736 | TTCTCAAAGCTAACAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5737 | ACGGAGACAGCTGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5738 | CGAGAAGCATACAGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5739 | GTGCAGCAGCCCGAAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5740 | GACCAATCACGGTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5741 | GACTAACGTTGCCTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5742 | CTCGAAACAAGGACTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5743 | GACCAATGTAAACACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5744 | GTACTCCAGGGATGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5745 | CTGGTCTCATTTCAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5746 | CAACCTCGTACACCGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5747 | TCAGATGTCCATGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5748 | GCGCCAAAGTGCCAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5749 | CACCACTAGTGGAGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5750 | ACGATGTTCCACTCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5751 | TTGGCAATCGACGGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5752 | CATTATCAGATCCCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5753 | AGTGTCACACAGGTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5754 | TGCGCAGGTTAAAGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5755 | AACCGCGAGCTCCTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5756 | CTACATTGTACACCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5757 | GTCGGGTCATGGTAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5758 | GACCAATCACTCTGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5759 | TGCGTGGCAGGCAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5760 | TGAGCATAGCGTGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5761 | GCATGTACAGTCGTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5762 | GCAAACTTCAAGAAGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5763 | GGAACTTAGTGTGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5764 | CTCTACGCACGGTAAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5765 | TCGTAGAGTGAAAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5766 | CCTATTAGTCCAGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5767 | CAGAGAGCATGCTGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5768 | TAGCCGGGTTTACTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5769 | TCAGATGGTCGTTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5770 | ATCTACTCACAGATTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5771 | GGTGCGTAGGCCCGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5772 | CTTCTCTTCTCGTTTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5773 | CCTTACGGTTTGTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5774 | GATTCAGGTTGATTCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5775 | TGGGCGTTCGCTGATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5776 | TATTACCTCTAGAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5777 | TCCACACGTAGGAGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5778 | CATGCCTAGTGAAGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5779 | CAGCGACTCAGCTTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5780 | AGGCCGTCATACTCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5781 | AGCATACGTGTTTGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5782 | GGGATGAGTTTAAGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5783 | TTCGGTCAGTAACCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5784 | ATCCGAACAAGGTTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5785 | CAGATCATCCCGGATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5786 | CACCAGGGTGCGCTTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5787 | GATCGATCACAAGCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5788 | ACTGAACAGCCAGAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5789 | CAGCTAAGTACTTGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5790 | GCTGCGAGTTGGACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5791 | TTGAACGGTCTAAACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5792 | TGCGGGTTCTTCCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5793 | CTGAAGTCACATCCAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5794 | CTCTACGAGATGCCAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5795 | CCTTACGCAAGCCCAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5796 | AGGCCGTGTCGAAAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5797 | ACGGGTCAGTACCGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5798 | ACGGGCTTCAGTCCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5799 | TACGGATTCCCTAACC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5800 | ATGCGATGTCGCTTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5801 | AAGGAGCGTAGGGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5802 | AGGGAGTGTTAGATGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5803 | TCATTACTCGGAAACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5804 | AGTCTTTGTAGAAGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5805 | AGTGGGAGTACCGAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5806 | CCAGCGATCTTCATGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5807 | CTCATTATCCGAAGAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5808 | CCAATCCGTGTGTGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5809 | GATGCTAAGCCACGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5810 | GTCAAGTGTGCTTCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5811 | GACTACAAGTGCTGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5812 | ACGATGTCACAAGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5813 | TGTGTTTCAACCGCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5814 | CACAGGCTCGGCCGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5815 | CAGATCAGTTCAACCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5816 | AAAGCAACAATGTAAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5817 | CCAATCCTCGTGACAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5818 | AGCGGTCAGTCGATAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5819 | GTCTTCGAGTGTACTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5820 | AGTGTCAGTCATTAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5821 | CGACCTTGTGCTGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5822 | TGACTAGTCATGTCTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5823 | TCTCATAGTTTGGCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5824 | CCCAGTTAGGGCACTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5825 | TCGCGTTTCCACTGGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5826 | TTAACTCTCTCGTATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5827 | GAACGGAAGATAGTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5828 | CATATGGCACACGCTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5829 | TCTTCGGCATGAAGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5830 | ATGAGGGCAGCTGTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5831 | ATGAGGGAGATGTTAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5832 | CTGAAGTTCTCAAGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5833 | TTAGTTCAGTAGTGCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5834 | GTCACAATCGCAGGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5835 | GCATGTAAGGTCGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5836 | GATCGCGGTGGTACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5837 | GCGCAACCACGAAATA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5838 | GATCTAGTCTGGTGTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5839 | ACGATACTCAGAGGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5840 | ACTGCTCCACTGTGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5841 | GACGTGCAGATACACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5842 | AGAATAGCAAATACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5843 | CTCGAAATCCACGTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5844 | ACACCCTAGGAGTAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5845 | CTCGTCAAGTGAATTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5846 | GTCACAACAGCCTTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5847 | TACGGTACACCGTTGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5848 | CCATTCGAGCTCTCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5849 | TTGAACGTCAGTTCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5850 | TCGCGTTGTACGCTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5851 | GGCGACTTCAGGCCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5852 | GGACGTCTCGTTTGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5853 | CACATAGGTTGACGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5854 | TCTGGAAAGATATGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5855 | TGACGGCTCACAATGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5856 | AGTAGTCTCTCTAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5857 | GAAATGAAGTCATGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5858 | AGTTGGTAGTCGCCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5859 | TGCCCTACAATCCGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5860 | GGCAATTAGGGTCTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5861 | AACCATGGTACTTAGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5862 | TACGGTATCATGCTCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5863 | GTTTCTACAGACTCGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5864 | ATCCACCGTATGAAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5865 | GGGACCTAGTACGTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5866 | CGATTGAGTGGTCTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5867 | GAGGTGATCACTGGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5868 | AACTGGTTCCATTCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5869 | GGTGAAGAGTGAAGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5870 | GTTCTCGTCACAAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5871 | GCACATATCCAAGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5872 | GTCGGGTTCTCGTATT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5873 | GTATCTTCACCTCGTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5874 | TGACTAGAGAGACGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5875 | GTCACAAAGGCATTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5876 | GTCACGGGTCCGAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5877 | CATATTCTCGTGGGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5878 | CGTTCTGAGATCGATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5879 | TCGTAGATCTTACCTA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5880 | CTACCCACATCACGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5881 | TCGTAGAGTCTTTCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5882 | GTACGTATCTGCTTGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5883 | AACCGCGCATGAACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5884 | CGGACACAGCTAGGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5885 | TCATTTGCAATGAATG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5886 | CACACTCGTACCGCTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5887 | CAAGTTGCATGACGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5888 | CGTTGGGTCCTCAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5889 | CATGCCTTCACCTCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5890 | CTCATTATCGCTGATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5891 | TACTTACAGCGAGAAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5892 | ATCACGACACGGTGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5893 | GTATTCTAGAGCTGGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5894 | CAGAATCCAGTGACAG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5895 | TCTTCGGTCAGAGCTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5896 | CACTCCAGTCCGTTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5897 | CGGACTGGTATTCTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5898 | TCTTTCCGTTACGACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5899 | AAAGCAAAGCTGAACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5900 | CCTATTACACAGGCCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5901 | GCCTCTACACGAAACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5902 | GATCGCGAGCGGCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5903 | ACACCCTTCATCGGAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5904 | GCTGGGTCATTACGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5905 | CGACCTTAGAGTGAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5906 | AGCTCTCGTTGTCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5907 | CTAGCCTGTCCCTTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5908 | TGTGGTATCCATTCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5909 | GCTGCTTGTAAATGAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5910 | CGGAGTCCATGGTCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5911 | CACAGGCGTTACGACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5912 | GCACATAAGACCGGAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5913 | TACGGGCCAATGACCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5914 | AGTGAGGAGTGTTAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5915 | TTTACTGGTGGTCTCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5916 | TGTTCCGTCCGTAGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5917 | GGCCGATCATTTCACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5918 | TCGCGAGGTCATGCCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5919 | CACACCTCATGCTAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5920 | CGAGCCATCATGTGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5921 | TCAGCAAAGAATTCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5922 | ACGCAGCGTCAAGCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5923 | CTACACCTCAGTCAGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5924 | CGAATGTGTGTAAGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5925 | CCTCAGTCAAGAAAGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5926 | ATCATCTGTTCCATGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5927 | TATTACCGTGAAAGAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5928 | AGAGTGGAGGTGCAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5929 | AGCATACTCAAACCGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5930 | AGAGTGGAGAATGTGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5931 | CCCTCCTTCCTGCCAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5932 | TCAGGTAGTCCGCTGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5933 | TGCCAAAAGACGACGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5934 | TCATTACGTTCAGCGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5935 | GCTGCAGAGATCTGAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5936 | CGGACACAGATATGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5937 | TGGGAAGTCCGGCACA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5938 | CTTAACTGTTCGAATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5939 | GAGCAGACAAGTACCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5940 | GGGCACTTCATGTCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5941 | CAGCATACAGGCTCAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5942 | CATCGAAGTTATCCGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5943 | AACCATGCATGAGCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5944 | ACAGCTAAGTGTGAAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5945 | CTAGTGACAAGTCTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5946 | TACCTTATCATGGTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5947 | TGAGGGATCACCAGGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5948 | GTAACGTAGGTGCTTT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5949 | TGACTTTCAAGCCGTC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5950 | CCTATTAGTGCGGTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5951 | CTGCGGAAGTCCGTAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5952 | CGAGCACTCTTGTACT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5953 | ACTTGTTTCCTAGGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5954 | ACGGCCATCGATAGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5955 | CATTCGCCATGTTCCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5956 | AGGTCCGGTATCGCAT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5957 | CTGGTCTTCCTCAACC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5958 | CCTTTCTCAGGCTGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5959 | CCTACACGTCGATTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5960 | TTTATGCGTTTACTCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5961 | AGGCCACTCCTTGCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5962 | CCTTCGAGTACTCGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5963 | GCGCAACGTGTGACCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5964 | GCCAAATAGGCAGTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5965 | GACCAATTCTGACCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5966 | ATAAGAGCATCCCATC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5967 | CGACTTCGTTACGACT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5968 | TAGTGGTCACGAAACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5969 | GTTACAGAGATCCTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 5970 | CGACTTCGTGGCTCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5971 | GAAACTCAGACAAAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5972 | TCATTTGTCGGCATCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5973 | TGGGAAGAGTCCGGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5974 | TAAGCGTAGACTTTCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5975 | AGGGTGAGTAAAGGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5976 | ACATCAGTCTGCGACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5977 | ACGTCAACACTCTGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5978 | GTTTCTAAGGCCGAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5979 | CGGAGTCAGAAACCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5980 | CGCCAAGAGCGCTTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5981 | CACCTTGGTGGTCTCG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5982 | GAAGCAGGTCACTGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5983 | ATCACGAAGGGAACGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5984 | CAGCAGCAGAATTGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5985 | CGATCGGGTACCATCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5986 | ACGGCCATCTCAAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5987 | ATAGACCTCGTTACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5988 | CAGCAGCGTGCTAGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5989 | TGACTTTGTCGTCTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5990 | AGGCCACAGACGACGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5991 | GGGCATCTCGACAGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 5992 | GAAATGAGTAAGTAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5993 | GGAAAGCTCCAAGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5994 | ACCAGTAAGCGTTTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5995 | CAAGAAAGTCTCCCTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5996 | CGAGCACAGACAAGCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5997 | ATCACGAAGATTACCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5998 | TGTATTCTCTACTATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 5999 | TTTATGCGTTGGTAAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6000 | GTTCATTGTGTGTGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6001 | GTCAAGTGTAAGGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6002 | GCACATATCTGAGGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6003 | GTGCGGTAGAGCTTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6004 | TCAGCTCGTAAACACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6005 | AGCTCTCAGTAAGTAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6006 | ACACCAAAGTGTCTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6007 | CTGTTTAAGACATAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6008 | GGCTGGTAGAATTGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6009 | CTGCCTAGTCAACTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6010 | CTGCGGAAGGGCTCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6011 | GTGTTAGAGGCTATCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6012 | CTCTGGTCAGCAGTTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6013 | ATTACTCAGGACCACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6014 | AGAGCTTTCTACCAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6015 | GTCGGGTGTAAGTAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6016 | AACTTTCAGAGCTATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6017 | ACATCAGTCCTCATTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6018 | AAATGCCTCAAGATCC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6019 | TCGGGACCAGTCAGCC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6020 | GTCAAGTAGAGTACCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6021 | ACCTTTAAGCAGGTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6022 | CTCACACTCTCCCTGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6023 | AAAGTAGTCCGGCACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6024 | CCCAATCGTGCAGTAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6025 | GGGAATGAGTCCGGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6026 | AACACGTGTAGTAGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6027 | CAACTAGGTCAATGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6028 | CCTTACGAGTGGTAAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6029 | GCGCGATTCCGGCACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6030 | GGACATTGTACAAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6031 | ATCTACTAGACTGGGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6032 | ACACCGGTCAGGCCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6033 | CACATAGAGCCATCGC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6034 | GTACGTATCTCCGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6035 | TAAGCGTTCGGCTTGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 6036 | GGGTCTGTCGTCTGCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6037 | TCGCGTTCAATAGCGG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6038 | GCTCCTATCGGATGTT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6039 | CTGCCTATCCTTTACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6040 | TAGACCACATGCCTAA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6041 | AGTTGGTCACCTCGGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6042 | ACGCCGAGTGACGCCT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6043 | GTCTTCGAGAAGAAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6044 | TCGGGACAGTCGTACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6045 | AGCTCTCAGGACAGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6046 | ACAGCCGTCACAATGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6047 | CAGATCATCGTGGGAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6048 | AGGTCATTCCGCAGTG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6049 | TCTCATACACGGTAGA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6050 | GACACGCTCTCATTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6051 | TACGGTAGTATCTGCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6052 | GTTTCTAGTAAGTGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6053 | TGGCGCACATAGAAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6054 | CTGCGGAGTAGAAAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6055 | TCAGATGGTACAGCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6056 | TGTGGTAGTTATGCGT | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6057 | TGGCTGGTCTGCGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6058 | AGCTCCTAGGCTCTTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6059 | CACACCTTCCACGACG | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6060 | CACACAAGTTCCACTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6061 | CCTACCATCCAGAGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6062 | TACACGACAAACGTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6063 | ATCATCTGTATAATGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6064 | CCTATTACAACCGCCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6065 | GAGTCCGAGTACGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6066 | TCAGGATTCATAAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6067 | GGGAGATTCTGAAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6068 | TGGACGCAGTTCGCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6069 | CAGCTAATCTAACTGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6070 | AGAGCGAAGTGCCATT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6071 | TTCGGTCCATGTTGAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6072 | GCAGTTAGTGGTCCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6073 | TTGTAGGGTGGTCCGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6074 | TTGGCAATCGGCTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6075 | GAACCTAAGTTGTCGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6076 | AAACCTGCAGCGTTCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6077 | CGGACGTGTACGCTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6078 | TCTCATAGTGTTAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6079 | GACCTGGGTGCGGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6080 | TCACAAGTCTGCCAGG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6081 | ATCTGCCTCTTGAGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6082 | CTCGAGGTCAGAAATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6083 | GGCCGATGTCGAACAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6084 | TGACTTTAGCGATTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6085 | ATGCGATGTTTGTTTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6086 | CGATGTAGTCCAGTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6087 | GACCTGGAGGTGTTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6088 | ATGCGATTCCAGGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6089 | CCTATTATCCTAGGGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6090 | AGGCCACGTTGATTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6091 | AGTGAGGTCCAGGGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6092 | TCTCTAATCAGTTCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6093 | ATCTACTGTTATCACG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6094 | GTTCTCGAGACCACGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6095 | ATCACGATCTCAAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6096 | CCACGGAAGGCCCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6097 | CCTACCAGTCTTCGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6098 | TGCCCTACAAGAAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6099 | TCAGATGAGTACATGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6100 | CGTAGCGCAAAGTGCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6101 | GAGCAGAAGCTAACTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6102 | TTCCCAGCATATACCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6103 | CGACCTTAGTGAAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6104 | AACTCCCAGTACGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6105 | CCTAGCTCAGGATCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6106 | CTTCTCTTCAGCCTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6107 | AGTCTTTCATTGTGCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6108 | CGATCGGCAGTAACGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6109 | AGTAGTCAGTTACCCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6110 | GCTCCTAAGCGATATA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6111 | TCGAGGCAGAGGTAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6112 | TGTTCCGCAATACGCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6113 | GCATGTAGTTCACGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6114 | GAGTCCGGTAAAGTCA | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6115 | ATCTACTTCGTGGTCG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6116 | TTCTTAGCAAATACAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6117 | TACAGTGAGTGAAGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6118 | CTAGAGTCAATTGCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6119 | CTGAAACAGTCGTTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6120 | ACTGAGTGTGCTGTAT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6121 | CGTCAGGTCAGCTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6122 | CTTAGGATCTACGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6123 | TCACGAAAGTTAAGTG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6124 | ACTGAACTCCATGCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6125 | ACGTCAACAGCTTAAC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6126 | TCCACACTCCATGAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6127 | GATCGCGTCAAACCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6128 | GTCGTAATCTGTTTGT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6129 | GCGCAACAGGAGTTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6130 | CCCAATCGTAAACGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6131 | ATCATCTTCGCAGGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6132 | TCTCATAAGCACCGTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6133 | TTCTCAATCTGGTATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6134 | CCCATACGTGCCTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6135 | CTCGAGGCACACCGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6136 | CCTACCACACAAGCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6137 | CGTCACTCAGCTCCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6138 | TTTGCGCAGTACCGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6139 | CGAGAAGGTCGCGAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6140 | AGTCTTTAGCTGCAAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6141 | CTCTACGAGACACTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6142 | GGGACCTAGCTATGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6143 | TTCCCAGGTTCGTGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6144 | AACACGTGTGAAATCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6145 | GCGAGAAAGTGGGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6146 | CGTTCTGGTGCCTGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6147 | GTACGTACAGTCGTGC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6148 | TGGTTAGTCTGGTGTA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6149 | GGACGTCTCTGTTGAG | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6150 | CCACTACTCGTGGTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6151 | TCGTACCAGGTGCACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6152 | CGATTGAAGGCATTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6153 | CATATGGCATTTCAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6154 | GATGCTATCAACACTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6155 | GGAAAGCAGCACCGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6156 | TGTGTTTCAGCTTAAC | ERX6700458 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6157 | CGTAGCGTCCTCAACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6158 | ATCTGCCTCTGTTGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6159 | ACTGAACGTTGAACTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6160 | CAGAGAGTCTCTAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6161 | AAAGCAACAGTTCCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6162 | CTCGAGGTCATAACCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6163 | GCTTGAATCGAGGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6164 | GTATTCTAGGCATTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6165 | GTGCAGCGTGCAGTAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 6166 | CGATCGGGTGTTTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6167 | GGCTGGTCAGTTTACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6168 | TAAGCGTTCTTTCCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6169 | TCTATTGTCGTTGACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6170 | CTCAGAAGTAGCTGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6171 | TTTGTCAAGCTGCGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6172 | ATTACTCAGCCACGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6173 | TGTGGTACATACAGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6174 | TTGACTTCAGGACCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6175 | ATTTCTGTCGGTGTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6176 | CCACTACAGTTTGCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 6177 | CGTGAGCGTAGAAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6178 | CGCTGGAGTTGGTGGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6179 | AGCAGCCGTGCTAGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6180 | AACTCCCAGCCAGTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6181 | TCCCGATAGGCAGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6182 | TTCTCCTGTGTGGCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6183 | CTGAAGTGTGTCAATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6184 | GGGAATGAGTACGTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6185 | TCATTACGTGGCTCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6186 | TGGCGCATCGCTTGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6187 | CACCAGGGTCGGCTCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6188 | CGATGTACAGCTCGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6189 | TGATTTCGTCCGAAGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6190 | ACTATCTGTAAACGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6191 | TGCGTGGAGATCCCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6192 | GTGCTTCCAATGACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6193 | ATAACGCCATGTCCTC | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6194 | ATTGGACAGGCTCTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6195 | ACGCCGAGTCGCGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6196 | CCACGGATCATTGCGA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6197 | CGTGAGCCAGATGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6198 | CGGACTGTCAACCATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6199 | AGATCTGTCTTGAGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6200 | GCGCGATCACTAGTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6201 | GTTCTCGAGTCATGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6202 | TGCCCTATCGAACTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6203 | ATCGAGTTCAAGGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6204 | CGTGTAAGTCCGTTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6205 | ATGAGGGGTCCGTTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6206 | CGTGTCTGTGAGTATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6207 | TCATTACAGATGTTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6208 | ACCCACTTCCTTCAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6209 | CCCAATCCAGATTGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6210 | GCATACAAGTATTGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6211 | GCATGTATCGCTTGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6212 | ACACCCTAGGCTAGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6213 | CAGCGACCAGTATCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6214 | TAGACCATCATACGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6215 | CACAGTATCTGAGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6216 | TACTTACCATGGATGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6217 | GTGCATATCAGCCTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6218 | GTAACGTGTCTCATCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6219 | GCTGCGAGTGAAAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6220 | GTATTCTAGCACACAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6221 | ATCTACTGTCGCGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6222 | GATCTAGTCCCTGACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6223 | GCTTGAAGTTCCACTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6224 | AGCTCTCAGGCCCTCA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6225 | AAAGTAGAGAATGTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6226 | CTTTGCGCACATGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6227 | GCCAAATCAATGAAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6228 | CGCGGTAGTCATCCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6229 | TCAGGATCATTAGCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6230 | CAGTAACGTAGGAGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6231 | GTACTTTGTTAAGTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6232 | CCACCTAAGACAGAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6233 | GACGTGCCATCGATGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6234 | TACTCGCTCACTCTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6235 | CACCAGGCATACTCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6236 | CGACCTTTCTTCCTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6237 | ACGATGTTCAACACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6238 | TGCCCATGTCGTTGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6239 | GGCCGATAGACTTGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6240 | GCTCTGTAGTAGCGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6241 | TTGCCGTCAACACCCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6242 | CGAGAAGCAAGTACCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6243 | GGCGACTGTGCACCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6244 | CTCCTAGGTGAACCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6245 | GACGCGTAGTGTCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6246 | AGCCTAAGTGTAAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6247 | TAGTTGGAGCGCTTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6248 | CACAGTATCGATAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6249 | CTCGTACTCTCTAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6250 | GTAGTCACATCTGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6251 | CATCGGGAGCCACCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6252 | ACTGTCCCACTTAAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6253 | TCAACGAGTGGTCTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6254 | CCACTACGTCAAACTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6255 | AACGTTGAGGGTCGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6256 | TTGGCAATCCTTTCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6257 | CATGCCTTCCGTTGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6258 | ATGAGGGGTGTGGCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6259 | CAAGATCGTGCACGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6260 | TTCTTAGCATGGATGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6261 | ACTTTCACAAGCCGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6262 | GTCATTTTCCACGACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6263 | TGGCCAGTCTGCAAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6264 | AACGTTGAGAAGGTGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6265 | GGCGACTAGCCTATGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6266 | GCAAACTCAATGGTCT | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6267 | AGGCCGTTCTTAGAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6268 | CTGCCTATCCTACAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6269 | ACCCACTGTTGAGGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6270 | CACACAACATATACGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6271 | CTCGAAACACGGCGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6272 | GACCTGGAGAGCCCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6273 | CCATGTCTCACATGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6274 | AAAGTAGGTGTTGGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6275 | GAAACTCGTCCGACGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6276 | TTGGCAATCTGGAGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6277 | CACAGGCCAAATACAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6278 | CTCATTACAGTAGAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6279 | GCATGATTCCTCCTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6280 | CTACATTTCCACGCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6281 | GCCAAATCACCCATGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6282 | ACTATCTAGAATGTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6283 | TGAGGGAGTACTTGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6284 | GTCATTTGTGCTTCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6285 | CTCGTCATCTGTGCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6286 | TAAACCGAGACACGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6287 | TACGGTAGTAGCTTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6288 | CGGACACCACCTTGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6289 | CATGACAAGCGGATCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6290 | GTGTTAGTCAGCTCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6291 | TGCGCAGTCTTTACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6292 | TAAGAGACAGGTGGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6293 | TGCACCTCAGTATGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6294 | CTAGTGACAAGCGCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6295 | ACAGCCGCATCGGGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6296 | CTGAAGTAGGCTATCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6297 | GTGCATATCGCATGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6298 | GAATAAGGTGACAAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6299 | TCGAGGCTCACATACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6300 | AACCGCGAGTACGCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6301 | GCCTCTATCTGCGACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6302 | CATTCGCCACAGATTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6303 | GGAAAGCTCTATCCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6304 | ACATCAGCATAACCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6305 | ACGGGCTTCAAACCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6306 | CGTTCTGGTCTCCCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6307 | CCAATCCGTGGGTCAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6308 | GGTATTGTCCCTCAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6309 | TACGGGCTCTGCGTAA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6310 | TTCTTAGGTTACGCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6311 | TCTCTAACACGTGAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6312 | ATCTACTGTAATCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6313 | TGTGGTATCCAGTATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6314 | GGCTCGACAGTCCTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6315 | CCAGCGAAGCAGATCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6316 | TTAACTCTCGTTTAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6317 | TTGGAACCAATGGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6318 | CTAGAGTAGGCATTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6319 | AGAGTGGCAATCTACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6320 | GCTGCTTAGACTCGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6321 | GAACATCTCTAACCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6322 | TCGGTAAGTTGGGACA | ERX6700457 | ERP132587 | testis | Early_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6323 | TGGTTAGCAAACTGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6324 | GTAGGCCGTGCTGTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6325 | TCAGCAAAGTGTTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6326 | AGGGTGAGTTCGGCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6327 | GCACATATCCTCCTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6328 | TGGTTAGAGATCCCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6329 | CGCGTTTTCGGTTAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6330 | GACGTGCAGGGATCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6331 | AACTCTTGTAGCAAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6332 | ACACCAACAGATAATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6333 | TAAGCGTAGGCCCTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6334 | AACGTTGCAGTTAACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6335 | AGGGATGGTTGCTCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6336 | TTCGAAGTCAGCGACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6337 | ATAACGCTCACTGGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6338 | AGGGAGTAGGAGTTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6339 | CGTAGGCGTAATCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6340 | ACGCAGCTCAGCATGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6341 | GTTCTCGAGTCAATAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6342 | TCAGGATAGTGGGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6343 | TTGAACGGTTGATTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6344 | GTGTTAGTCTGTGCAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6345 | GCATACACACTACAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6346 | CCGTACTTCTTGGGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6347 | CTGCCTAAGAGTGAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6348 | CACAAACGTATCAGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6349 | CCCAATCAGCTATGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6350 | CAAGTTGAGGCATTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6351 | CTGAAACAGGGTCGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6352 | TGGTTCCCAGCCTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6353 | ATCCGAATCGGAAATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6354 | TGGCTGGGTATGGTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6355 | GACTGCGTCATTCACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6356 | CTAATGGGTTCCACGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6357 | TTGCCGTTCGATGAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6358 | TACTCGCCAATCTGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6359 | TCGCGAGTCAGTGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6360 | ACATCAGAGTACTTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6361 | ATGGGAGTCCGTACAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6362 | TCGCGAGGTTCAGACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6363 | GTAACTGCAGGGTTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6364 | AAAGCAACATATGGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6365 | CTCTGGTGTAAGAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6366 | TCGCGTTGTGCTCTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6367 | CAGCCGAAGGCGCTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6368 | GGACATTGTCAAAGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6369 | GACTAACTCTGAAAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6370 | CGTTAGACAAGCTGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6371 | GAGCAGACACGGCCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6372 | ACTGTCCCAGTCAGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6373 | AAACCTGCAAGGTTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6374 | AGATTGCTCTAGAGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6375 | CGCCAAGGTTCCATGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6376 | CCTTACGGTTCAGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6377 | GGCTGGTTCAGCGATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6378 | AACCGCGGTAGAAGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6379 | TGCTACCAGGAGTTTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6380 | AAAGTAGTCCCTTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6381 | AAGACCTCACGCGAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6382 | CGTCCATAGAGCTTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6383 | ACGCCAGAGGACAGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6384 | TCAACGATCATATCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6385 | CAGCTAAGTGTTCTTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6386 | TATCTCATCCGCGCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6387 | CGGCTAGAGTCATGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6388 | ATGTGTGGTAACGCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6389 | CACCAGGGTTCCCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6390 | CTCCTAGAGTGGGTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6391 | TCACGAATCGAATGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6392 | AGAGCGAAGTCAAGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6393 | AGGTCATCACAGGCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6394 | ACTGTCCAGGCAGGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6395 | CTAGAGTCATACGCCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6396 | CCATTCGCAAAGTGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6397 | GGGAGATTCAGGTAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6398 | CTGAAACCACAGGCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6399 | TCTGGAACATATGCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6400 | AGGGTGAGTTCGCTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6401 | TACTTGTCAACTGGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6402 | GACCTGGTCGGGAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6403 | TCAACGACAGTATGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6404 | ATTATCCTCTCGTATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6405 | ACTGATGCAATTCCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6406 | ATAACGCTCTCACATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6407 | CAACCAACATCCGTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6408 | GTAACGTCAAGTCATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6409 | CCCATACTCCAAACAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6410 | GCTCTGTCAGATGGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6411 | TTTCCTCGTCAACATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6412 | ATTGGACAGTAGCCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6413 | GAATAAGCAAGAGTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6414 | ATTGGTGCATCCGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6415 | ACAGCCGGTGGTCCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6416 | GCCTCTAGTAGGAGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6417 | AGGGTGAGTTCCACGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6418 | CTCGAGGGTCACCTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6419 | CGCCAAGGTCTTGCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6420 | TTATGCTTCCTTTCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6421 | TGACAACTCTATCCCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6422 | AAAGCAATCATCACCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6423 | AAAGCAATCGAGAGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6424 | CATCGGGGTGCTCTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6425 | GTTCATTTCTCGAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6426 | CCATGTCGTAACGTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6427 | ACTTACTGTCTTGATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6428 | CACAGGCAGTTCGCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6429 | GCATGTACAAACTGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6430 | CAAGGCCTCAACGGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6431 | CTAAGACGTTATGCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6432 | AGAGCGATCCTATGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6433 | TGCACCTAGTGAATTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6434 | AGCTTGATCGAACGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6435 | CATCAAGTCATCACCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6436 | CTGATAGCACATGGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6437 | AACTCAGGTCGCGAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6438 | ATGGGAGTCACCACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6439 | GACACGCTCTCAACTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6440 | GCATACAGTCGGCTCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6441 | TTCTCAATCGGCATCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6442 | GGGCACTCAAGGACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6443 | GGGCATCTCCGCATCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6444 | GCTGCGACAGACGCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6445 | TTAGGACGTCTCTTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6446 | CGAGCCACAAAGGAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6447 | GAAACTCAGACTCGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6448 | CGGGTCAGTAAGAGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6449 | TAGACCATCTGCGTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6450 | AGCAGCCGTTCGAATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6451 | AAGGAGCCACGGTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6452 | ACACCAAGTTACAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6453 | AGAGCGAGTCCGTCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6454 | CCAATCCTCAATCTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6455 | TCGTACCAGCTGAAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6456 | CGAACATGTCTCATCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6457 | CTGCCTACAATAACGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6458 | GATGAGGGTTCCAACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6459 | TTTGTCATCATGCTCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6460 | ATTATCCGTAGCGTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6461 | TGCGTGGGTCACAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6462 | GCAAACTAGGGTCTCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6463 | CTCATTAGTATATGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6464 | CCTACCAAGCACACAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6465 | CTACATTCATTAGGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6466 | AGCCTAAAGGCCATAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6467 | CACACAATCTAACTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6468 | TTAGGCAAGCCCAACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6469 | CTAATGGGTAAGTTCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6470 | TGCGGGTAGTACTTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6471 | GGAATAATCGTCGTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6472 | GTCTCGTGTAACGACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6473 | CGCGTTTGTGTGACCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6474 | AAAGTAGGTACTCTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6475 | GCGCCAAAGTCATGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6476 | CGCGGTACAAAGGCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6477 | CAACTAGCATAGGATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6478 | ACTGTCCCAATCAGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6479 | CCTACCAGTAAACACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6480 | CCTAAAGGTTCACCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6481 | TAAACCGCAAGCTGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6482 | TGTCCCAAGGCATTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6483 | TGTATTCCATGACGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6484 | ACATCAGGTGTTCTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6485 | GACAGAGCATTTGCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6486 | ATCTACTGTCCTAGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6487 | CAAGATCAGACGACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6488 | CCTAAAGGTTATTCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6489 | TAGTTGGAGAGTACAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6490 | ATCTACTTCGTCGTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6491 | GCTGCTTAGCTGCGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6492 | TACGGGCTCGGAATCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6493 | CCTTTCTAGATGAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6494 | CAGATCATCGCGTTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 6495 | GCGCCAATCAAACCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6496 | TGTGTTTAGAAGATTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6497 | CCTTTCTTCTCCAACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6498 | CAGCAGCGTTCCGGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6499 | AGCTTGATCAGCAACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6500 | GAGCAGAAGGAATGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6501 | CGATCGGGTCTTCAAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6502 | CCGTGGAAGCGTAATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6503 | ATAAGAGGTCTCCCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6504 | GACACGCCAAGTAATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6505 | TTAACTCGTAGCCTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6506 | CTACACCGTCGACTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6507 | ACTGAACAGCCGATTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6508 | CCGTGGAAGAAACGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6509 | TAGTGGTCATGCAACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6510 | AACTCAGCATAGGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6511 | GGCCGATCACCTTGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6512 | CACCAGGAGAAACCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6513 | CCTTTCTCACCAGCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6514 | GTTCATTAGGTAGCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6515 | AAAGATGAGAGTACCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6516 | GTACTCCAGCGATAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6517 | TTAACTCGTGCAGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6518 | GTTCATTCAAGGCTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6519 | TCCACACAGAAAGTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6520 | GGGACCTAGACTAAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6521 | GTCACGGAGGACACCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6522 | AAAGCAACAAAGTGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6523 | CGACTTCAGAGACTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6524 | CGGCTAGAGCCTATGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6525 | ACGCCAGAGGATGCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6526 | CACAGTAAGCCAGGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6527 | TGGCGCATCAGTGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6528 | CTCCTAGAGCACAGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6529 | CAAGTTGCATCGTCGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6530 | CTCGAAACATGCCTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6531 | TGAGAGGTCCTAAGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6532 | CTTGGCTGTCGCCATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6533 | CTTTGCGAGCTGCCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6534 | TAGTGGTAGGAGTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6535 | GCGGGTTGTCGCTTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6536 | GATTCAGCACTGAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6537 | ACATCAGAGTCGAGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6538 | AGCTTGAAGGTTACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6539 | GAACGGACAGCGTAAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6540 | TTGACTTCAGACTCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6541 | CACAGTATCCCATTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6542 | CGCTATCTCTACGAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6543 | CGCGGTACACAGCGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6544 | GGGAATGGTTTGGCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6545 | ACTGAACGTTTGGCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6546 | CGACCTTCAAGTTCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6547 | CAACCAACAAGACGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6548 | TGTGTTTCATCCGGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6549 | ACTATCTAGAGCCTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6550 | TCTTTCCGTACAGTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6551 | AACACGTCAATCGGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6552 | TCTATTGGTCATGCCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6553 | GGGCATCTCAGCTCGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6554 | TGAGCCGTCTGTCCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6555 | AAGGTTCAGGCATGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6556 | CGTAGGCCACTACAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6557 | AAGACCTCAACACGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6558 | CTACATTCAATACGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6559 | GACGGCTAGTGGGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6560 | GCATGTACACTTGGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6561 | AATCCAGCAGTCAGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6562 | CGTCAGGCACCCTATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6563 | TCATTTGGTTTGTTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6564 | AGGGTGACATCCGCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6565 | CTTCTCTAGCTTTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6566 | GTGCGGTGTAGTAGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6567 | GATGCTAAGATAGGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6568 | CATCAGAAGCGTAATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6569 | TTCTTAGGTAACGCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6570 | TCAACGACAGGACGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6571 | GTGCAGCGTACACCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6572 | GCATGCGTCGAGGTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6573 | CGTCTACCACGGCTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6574 | GTCACGGCATCCGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6575 | CAACCTCAGTCCATAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6576 | CTCGGGATCTTTACAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6577 | CTAAGACAGAGTCGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6578 | TTCTCCTGTCCGAGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6579 | GCTCCTAAGATAGTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6580 | CACCAGGGTCAGGACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6581 | CACACAAGTCAATGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6582 | CGATCGGGTGATGCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6583 | GCAAACTTCCAAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6584 | TAGGCATAGCCCAACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6585 | TAAGCGTTCAGCAACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6586 | GACGGCTAGCCACGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6587 | GGGCATCTCCGTACAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6588 | CCTTTCTAGAGGTTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6589 | TCAGCTCCATAAAGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6590 | GCTGGGTAGCTACCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6591 | GATTCAGAGAAAGTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6592 | TCGTACCCAACACGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6593 | CAAGAAAGTCGACTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6594 | TGACTTTTCATCGCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6595 | GCACTCTCATTAGCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6596 | GCGCGATCACGAGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6597 | AAGACCTTCTTGCCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6598 | CGCGTTTCATGGTCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6599 | CCCTCCTTCTGCAAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6600 | CTCTAATAGCTTCGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6601 | TCAGATGCAGCTGGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6602 | ACCTTTATCCTCTAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6603 | CCTTCCCAGCCTCGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6604 | TACTTGTCACGCGAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6605 | CACATTTAGTGTGAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6606 | TCGAGGCGTCAACTGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6607 | TAAACCGGTGCTGTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6608 | GATCGATGTAGAAGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6609 | GTGTTAGAGCCAGGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6610 | CACAAACCAGCCTTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6611 | GAACGGATCTACCTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6612 | CTCACACCAATCACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6613 | TTATGCTTCGGCGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6614 | GAGTCCGTCCTTTACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6615 | TGGTTAGAGAGTCGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6616 | AACGTTGAGGCTAGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6617 | AGCATACCAATGGAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6618 | GACGTGCCATAGGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6619 | TGAGCCGTCCACTCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6620 | GACACGCAGGCAGGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6621 | CGGCTAGAGACGCTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6622 | GACCTGGTCACCATAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6623 | CCTTTCTCAATAGCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6624 | TGAAAGAAGATGTGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6625 | GACACGCAGTTAACGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6626 | ACACTGACATGCCACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6627 | ATTGGACGTACCGAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6628 | GGGCATCGTTGGTGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6629 | ACGATACTCAGCTCGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6630 | AGCCTAAAGGGTTCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6631 | GTTAAGCCACGCTTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6632 | CCACGGAAGCGTTTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6633 | CCTACACGTAAGTGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6634 | CCATTCGCAAACCTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6635 | CATCCACTCAGTGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6636 | AAGACCTGTGCACCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6637 | CTTAACTCATTGGGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6638 | TGAGGGAGTAAACGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6639 | GCTTGAAGTGGTGTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6640 | CCTACCATCTTTACAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6641 | CAAGATCTCCACGCAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6642 | CGGCTAGCAGTGGGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6643 | GCGCGATGTCGACTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6644 | ACCTTTAAGGATGGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6645 | GATCGATGTACAGTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6646 | ACCTTTATCTGTCCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6647 | ATTCTACAGGCCATAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6648 | CTAATGGTCTGCAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6649 | CATATTCCAGATAATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6650 | TAGAGCTGTGGAAAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6651 | TAAGAGACATCCGGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6652 | CCCTCCTGTCTCTTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6653 | TGCCCATGTGTCCTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6654 | ACACCAACATCCTTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6655 | TAGTTGGGTTGTGGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6656 | TCAGCAATCGCCCTTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6657 | ACGAGGAGTAGCGATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6658 | AGCGGTCCATGCCACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6659 | TGGCTGGGTTGATTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6660 | CTGAAGTGTCTCATCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6661 | TCTCATATCGAACTGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6662 | GCGCAGTAGGGATGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6663 | ACGCCGAGTAGCGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6664 | TAAGAGATCGTAGGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6665 | CTCGGAGCAGGGTTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6666 | AGCAGCCCAGGATTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6667 | CTGAAGTGTCAAGCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6668 | TGCTACCGTCTAGTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6669 | TGGGAAGGTTGTACAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6670 | AGATTGCAGGCAAAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6671 | CTTCTCTGTGTAACGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6672 | TTTACTGCAGTGAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6673 | TTCTCAAAGTCAAGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6674 | AGGCCACCACATTCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6675 | GGGATGATCAACACGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6676 | CGGACGTTCTGCAAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6677 | GATTCAGAGTCCGTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6678 | ATCCGAAAGACGCAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6679 | TAGTGGTAGAGTAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6680 | AGAGCGAGTTACTGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6681 | ACTGAGTTCAGTCAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6682 | CTCAGAATCATAAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6683 | TGCTGCTTCTAGAGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6684 | GGTGCGTAGTTGAGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6685 | TGCTACCGTGTGAATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6686 | ATCTACTAGTGGCACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6687 | CATGGCGTCGAATCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6688 | TTAGGACTCTTGAGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6689 | CCACCTAGTGTGCGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6690 | GACTAACAGTTCGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6691 | TAAGAGATCTACTCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6692 | ACTGTCCGTGTTAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6693 | TGTCCCACATCCTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6694 | ATAACGCGTGTTTGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6695 | AATCCAGAGAGACGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6696 | TTCGAAGCACATCCAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6697 | GACTAACCAATGGAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6698 | ACCAGTATCAGCTTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6699 | TGACTAGCACCACGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6700 | GAACGGAGTAAATGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6701 | GACGTTATCTTCATGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6702 | GGACAAGGTTTGGGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6703 | TCGTAGACACATGGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6704 | CTCGAGGGTTAGAACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6705 | TCCCGATGTTAGATGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6706 | ACGGCCACAGGGAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6707 | CGCCAAGTCTTAGAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6708 | GCACTCTCAGCTCGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6709 | AGCTCTCGTAGCTGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6710 | GTGCATAAGTCCCACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6711 | CACATTTAGTGTACTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6712 | CATCAAGTCGAATGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6713 | GGACGTCAGACGCACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6714 | CGTAGGCAGTGTTTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6715 | GGAATAAGTCACAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6716 | GCATGTATCAGCAACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6717 | TTAACTCAGTAGCCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6718 | CATCAAGTCTTCAACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6719 | AAGACCTAGAGGTTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6720 | GTACTCCAGGCGACAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6721 | CTGAAGTTCATGTCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6722 | TCGTACCAGCTCCTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6723 | ACGATGTAGGCTCAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6724 | CGGAGTCTCATGCTCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6725 | CGTGTCTCACATCCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6726 | CTCGAAAGTAGATTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6727 | CACATTTTCATCTGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6728 | CCATTCGAGTAGCGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6729 | CAGCTAATCTTCAACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6730 | AGCGTATGTGTGTGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6731 | CTCCTAGGTTTGACTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6732 | AGGCCGTAGGCTCATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6733 | GAGTCCGTCTCCAGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6734 | CTCACACGTTCGGCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6735 | CAGCGACGTACATCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6736 | AACACGTCATCCCACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6737 | GGCGACTCATCATCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6738 | CGGTTAAAGTTACCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6739 | ACTGTCCGTCAAAGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6740 | TACCTATTCGCATGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6741 | GCTTGAAGTACAGCAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6742 | CGAGCCAAGTGAACGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6743 | ACGGCCATCAACGAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6744 | CGGAGTCAGCCCTAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6745 | ACAGCCGAGTGTTGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6746 | TCGCGTTGTATTACCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6747 | ACATCAGCATAGTAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6748 | GCTCCTATCTGAGTGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6749 | CGCTGGATCAAGCCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6750 | TGTATTCGTGACAAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6751 | CAAGTTGTCTTTAGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6752 | ATCATCTCACGACTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6753 | ACGCAGCGTATTACCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6754 | GCCTCTACAGATCGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6755 | ACTGATGTCGGCGCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6756 | CAAGGCCAGACGCAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6757 | AAACCTGGTATAATGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6758 | AAAGCAAGTCAGCTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6759 | AAGCCGCAGCCACGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6760 | TTCTCAAAGTCCTCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6761 | CATCGGGCACAGAGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6762 | ACATCAGGTACATCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6763 | GCGCCAAGTAGCAAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6764 | TACACGAGTTTCCACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6765 | AGATCTGAGTCTCAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6766 | CTCGAGGAGCTAGGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6767 | TCATTTGGTCACTGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6768 | GCAGTTACATCGACGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6769 | CTTTGCGAGAGCTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6770 | GCTCCTAAGTATGACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6771 | TGCCCATTCAGTACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6772 | CTACGTCGTTATCCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6773 | GGGTCTGTCCGTCAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6774 | CGTGAGCGTAGCTAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6775 | AGGCCACAGAGGGATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6776 | TACCTTACAGTACACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6777 | AATCCAGAGTCCAGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6778 | CATTATCCACCTCGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6779 | ACGCCGAGTTCAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6780 | TCAGGTAAGCTAAGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6781 | CCACCTAGTACTCGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6782 | CTCACACTCGCCAAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6783 | CGAGCACAGTTCGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6784 | GTACGTAAGAAACCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6785 | ACCTTTAAGTCTTGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6786 | CAGCAGCGTAATCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6787 | ATCTACTAGGTGATTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6788 | GATGCTAGTCTTTCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6789 | GCAAACTGTAGAGCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6790 | GGGACCTAGTGCTGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6791 | CTCTACGAGCTACCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6792 | TCAGCTCCACGAAGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6793 | AAGGAGCAGGGTCTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6794 | TGCGCAGAGACGCACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6795 | CTTTGCGAGCCAGTTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6796 | GACGGCTTCGGTGTTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6797 | CAGAGAGAGCTGATAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6798 | ACACCAAAGGCTCAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6799 | CTGCGGAGTTTGGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6800 | TGTTCCGAGCCCAATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6801 | CGTGTCTGTCCGACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6802 | GATGAAACAGGGCATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6803 | AAGGCAGGTAAGTGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6804 | CGAGCCAGTCGGATCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6805 | AAGGCAGAGGCATGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6806 | CAGAATCCAGTAGAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6807 | CCATGTCCAATGGAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6808 | ACTTTCAGTATAGGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6809 | CACAGTAGTAACGACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6810 | GCTCTGTTCCGCAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6811 | TGCGTGGCATGATCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6812 | CACAGGCGTTACAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6813 | ACTGAACGTGTTCTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6814 | CTACACCCAGTATAAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6815 | GACACGCTCCATGAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6816 | GTCGGGTGTAGTGAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6817 | AATCGGTTCGTAGGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6818 | GATCGTATCGTACGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6819 | GGAATAAAGCCGTCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6820 | CAAGGCCCACGGACAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6821 | TTGGAACTCCTTGCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6822 | GGGCATCGTCATGCCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6823 | ATTCTACGTTATCACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6824 | GATCGATTCATTCACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6825 | TCGCGTTGTGCATCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6826 | CTCTGGTCACTAAGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6827 | GTGCATAGTGAGTATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6828 | CACCACTCATGGGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6829 | GATGAGGTCTTAGCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6830 | CTCATTATCGCCTGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6831 | CATGGCGGTTCTGGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6832 | CCTATTAGTAAGTAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6833 | GTTACAGGTGTTAAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6834 | CCTAAAGGTCGAGTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6835 | CTGTTTACATTGGTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6836 | GACCTGGGTCCCTTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6837 | TTCGAAGTCTAACGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6838 | ATGGGAGAGGTTCCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6839 | GAAATGATCTTCTGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6840 | AGCTCCTTCCGAATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6841 | GCTGCTTAGGTGTTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6842 | CCACCTATCGTGGTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6843 | GCGCGATAGCGTAATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6844 | AATCCAGAGAGCCCAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6845 | TCACAAGGTCAAACTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6846 | TCGAGGCAGCTGCCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6847 | GCAAACTTCCGTTGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6848 | CGGACGTAGCTGCGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6849 | ACGGGCTAGTTCGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6850 | CGGCTAGCACCAACCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6851 | CGGACACTCCGAAGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6852 | ATAAGAGTCCTTGCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6853 | TGGACGCAGCTAGTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6854 | ACATGGTAGGCCCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6855 | TCCACACAGTAGATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6856 | AGGTCCGGTTCTGGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6857 | GTGTTAGAGTGGTAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6858 | CAGAGAGTCTTTAGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6859 | GAAATGAGTGGTAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6860 | AACTGGTGTCCAGTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6861 | CCACTACTCGAACTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6862 | GGGATGACATCACGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6863 | GACGCGTGTTCCTCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6864 | ACATACGCATTATCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6865 | TCGTAGATCTCTGAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6866 | GTAGTCACATTGTGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6867 | CCCAGTTGTTATCCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6868 | GCTGCAGGTCGAGTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6869 | GCGCAGTTCGCATGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6870 | CGGACACTCTAGCACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6871 | CGAGCCAAGACTTGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6872 | GGCAATTTCTCCGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6873 | CAGTCCTTCGGCTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6874 | GGATTACCACCTTGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6875 | AGGGATGCACAGACAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6876 | CAACTAGAGACTGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6877 | GTTCTCGCAGCTTAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6878 | GGACAGATCTTCTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6879 | ACTTGTTTCAATAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6880 | GTACGTACATGTTCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6881 | ACATACGAGCGTTTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6882 | GCGCCAATCGTCTGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6883 | GTTACAGGTGAGTATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6884 | AGGCCGTTCAGTGCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6885 | CGTAGGCCAACTGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6886 | GATCGATTCATTCACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6887 | GCAGCCAGTAGTACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6888 | CGTAGGCAGGAGCGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6889 | TAAACCGTCCCGGATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6890 | GCACTCTGTTATCCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6891 | AGTGAGGTCGGAATCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6892 | ACGGCCAGTATCTGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6893 | CCCATACTCAACACCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6894 | CGCTGGAGTGTTTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6895 | TATGCCCCAGACGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6896 | AGGGTGAGTATCTGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6897 | CAACCAAGTTCCGTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6898 | TACTCGCAGAGCCCAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6899 | TTTGTCACAAAGCAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6900 | GTCACAATCACCAGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6901 | AAAGCAAGTCCCGACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6902 | ACGAGGACATGTCCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6903 | GTGCGGTTCATTCACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6904 | ATTGGACCACATAACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6905 | TGCTACCAGATGCCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6906 | TACCTATGTGGTAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6907 | TACTTGTAGATCCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6908 | CATTATCCACCGAAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6909 | ACGGCCACATGCTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6910 | CGATTGATCTTGAGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6911 | GTAACGTGTCACTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6912 | GTATCTTGTGTAATGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6913 | AACCGCGTCCAGATCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6914 | ACTGAACCAGATCTGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6915 | CCATGTCAGTCAAGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6916 | TAGACCATCGCCATAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6917 | TTGGAACTCCCATTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6918 | GTGAAGGTCATACGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6919 | CGTCTACTCCGGCACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6920 | AAGACCTCACCAACCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6921 | GCTCTGTTCAACGGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6922 | CCATTCGTCCTTGCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6923 | TCAACGAGTCACACGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6924 | CATTCGCAGCGTAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6925 | TTAGGCAAGCTGCCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6926 | CATATTCAGCGCCTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6927 | CCGTACTAGAGGACGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6928 | AAATGCCTCATTTGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6929 | GCACTCTTCCTTGCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6930 | TGGGCGTCACATCCAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6931 | AGGCCGTCACTATCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6932 | CACATTTAGCTAACTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6933 | AGCCTAAAGGGATCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6934 | TCAGATGCAAGGTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6935 | CGACTTCCACAGATTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6936 | GACGCGTGTATAAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6937 | AAACGGGTCGTTACGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6938 | CACCACTAGACCCACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6939 | GGACAGACACGGTTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6940 | TGACTTTGTAGAGTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6941 | TAGCCGGAGCGGCTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6942 | TCGGTAATCCACGAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6943 | GGAACTTTCCCAAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6944 | CCTTACGGTATTCTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6945 | TATCTCAAGCGATATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6946 | GGAACTTTCCCTCAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6947 | AAACGGGTCACAACGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6948 | AGGGAGTCAGTAGAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6949 | TGGGCGTCATTTCAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6950 | CACAGGCAGTGTTGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6951 | CAACCAAAGATCGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6952 | GATCGTAGTCCGAAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6953 | ATTATCCTCACAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6954 | CGATGGCAGATGTGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6955 | ACTTACTTCTAACTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6956 | GTTCTCGAGGAGTTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6957 | TCTATTGTCCCAAGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6958 | GTGCATAAGTCTCCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6959 | TAAGCGTCATACGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6960 | AGTGAGGAGATGTAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6961 | CCTCTGACATTCCTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6962 | GGCCGATTCTCTTGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6963 | TTCCCAGAGTGAACGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6964 | AGTGTCACAGTAACGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6965 | TTGACTTTCAATAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6966 | GGACATTGTTGGTAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6967 | TGCGTGGTCTTCATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6968 | CCTTCCCAGCTTTGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6969 | AAGGCAGTCAGTGTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6970 | GTGCATAGTGTAAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6971 | CTGCTGTCATCGGTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6972 | AGCATACAGAAGAAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6973 | GGCTGGTGTCATGCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6974 | AAGACCTCACCTATCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6975 | ACAGCTAGTATAATGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6976 | ACTTGTTCAGATGGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6977 | CTCAGAATCTGTCTAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6978 | GCGCAGTGTATTAGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6979 | TTGACTTAGCCATCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6980 | GCGACCATCTGTACGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6981 | TTTGGTTAGTAGGCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6982 | ACATACGTCTTAGCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6983 | GGCAATTCATACTACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6984 | AGGGTGACATGCTAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6985 | GTTCATTTCAAGGCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6986 | TAGTTGGCAGATCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6987 | CAGCAGCTCCCATTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6988 | CGATGTAGTGCAGACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6989 | AGCGTATCACAGTCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6990 | GCTTCCATCATGTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6991 | GTTACAGAGCGGCTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6992 | CTGAAGTGTTTACTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6993 | TACGGGCCAGGACCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6994 | GTTAAGCCACAGGCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6995 | TGATTTCAGTACCGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6996 | ACACCGGGTCCAGTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 6997 | TGACAACTCGCTGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6998 | CCCTCCTAGATATGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 6999 | CCACCTAAGAGTCTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7000 | GTCGGGTCATCTACGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7001 | GATCGCGAGCACCGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7002 | CGATCGGTCAACGGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7003 | GTATCTTAGTGGGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7004 | TTGTAGGAGTAGCGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7005 | ACCGTAATCTCGCATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7006 | ATGCGATGTCTTCTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7007 | AAGCCGCCAAGGTTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7008 | TGGCCAGCATCCCACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7009 | ACGATACGTATCACCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7010 | CTGTGCTAGGAGTACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7011 | GTCTCGTGTGTATGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7012 | TAAGAGACATTATCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7013 | TCAGCTCAGTCCTCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7014 | CATGACAAGGCCCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7015 | CGGACGTGTAGAAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7016 | ATTATCCTCAGAGGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7017 | CCTAGCTAGATCTGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7018 | TTAGGCATCTTTAGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7019 | TTAACTCCAGCCAATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7020 | ATCATGGAGCGTCAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7021 | CTGTTTACATCGATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7022 | AGATTGCAGTGTGAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7023 | CTACCCAAGCTGGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7024 | AAGCCGCTCTGGCGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7025 | GTCATTTTCTTACCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7026 | TAAGAGAGTCACTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7027 | GTGCATACACGGATAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7028 | TTCTACAGTTCTCATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7029 | TCGCGTTAGAAGGACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7030 | CAGTCCTGTATAGTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7031 | CGTTGGGCACAAGACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7032 | AACTCAGTCTGGCGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7033 | CCGGTAGGTGTTGAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7034 | ACGGCCAGTAAAGTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7035 | GCAAACTCAGGTCTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7036 | ACTATCTAGGCTCAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7037 | GACTACAGTGCGCTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7038 | GGACATTAGGGTTTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7039 | CAGCTGGTCGCGTTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7040 | ACGCCGACACAGGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7041 | GACTAACAGTGACATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7042 | ATGGGAGTCCAAGCCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7043 | CGGAGTCTCAACGAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7044 | CTCGGGATCTCCAACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7045 | AAGTCTGTCTCCTATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7046 | CCTCAGTTCTCAAACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7047 | TGGACGCAGCTCCCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7048 | GGCGACTCAATGGTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7049 | TGATTTCTCCAAGTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7050 | AAAGCAAGTAGCGTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7051 | CTACCCAAGCGCCTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7052 | GATGAGGAGACTAAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7053 | AGCTCTCGTGAGGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7054 | ACGCAGCTCCGCGTTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7055 | GCTGCAGCATCAGTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7056 | TTCGGTCAGCCCTAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7057 | TGGGAAGAGATAGGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7058 | CTCTAATTCTTGCCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7059 | CTCGTCAAGATATACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7060 | CTGCTGTTCCCTCTTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7061 | TATTACCTCAGTACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7062 | GCAGCCACAGTGAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7063 | CACTCCAAGCTGGAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7064 | GCACATAAGACGCTTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7065 | TACGGTATCTGATACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7066 | CATCAGATCGCATGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7067 | GTTAAGCTCGCTTGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7068 | TGACTTTGTCCATGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7069 | CACCTTGAGTACGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7070 | CTAAGACAGCAGGTCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7071 | GCAATCAGTACGAAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7072 | GTGTTAGCATGATCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7073 | TCATTACGTCTAGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7074 | CACATTTTCAGGTTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7075 | TGAGGGAGTGCAACGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7076 | AACTGGTAGCGTTTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7077 | AGCGTCGGTACCGGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7078 | AGCTCCTGTCAGCTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7079 | CAAGAAATCACAAACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7080 | AGCTTGACAGACGCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7081 | CTACACCAGTGACTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7082 | TGATTTCCAGAAGCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7083 | TAGTTGGCATTTCAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7084 | GGATTACGTACAGACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7085 | ACATGGTGTAAGCACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7086 | GCCAAATGTAGCGATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7087 | CAGCATAAGCAATATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7088 | CATCAGACACTTAAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7089 | CGTGTAAAGAGGGCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7090 | CCACTACGTACAGTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7091 | GCACATATCGAACTGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7092 | TCTTCGGCATTGCGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7093 | CTGAAGTAGACTGGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7094 | TCGAGGCGTAGGCTGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7095 | TGGCCAGCACATGGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7096 | TGGCTGGTCGGCGCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7097 | CACAGGCGTAGTAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7098 | TCTTTCCAGTGAATTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7099 | TCTCTAACAGTCGATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7100 | CTAACTTAGTTAGCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7101 | CACACTCCAAGCCGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7102 | GACGTTAAGTACGTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7103 | GGATGTTCACAGACTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7104 | AGCGTATGTTACGACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7105 | TATTACCTCCTGCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7106 | GCTTCCATCTTGGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7107 | TCTCTAAGTACTTGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7108 | GTATTCTTCAGGCAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7109 | CCTATTACAAAGGCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7110 | AACCATGTCAGCGACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7111 | ATTACTCGTGCACTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7112 | GGGAATGGTTCCACGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7113 | GAACATCCAGTGGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7114 | ACTGAGTAGTACGATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7115 | GGCTCGACAGGTCCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7116 | CTCTGGTTCTTCTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7117 | AGCTCCTAGGCAAAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7118 | CATGACACATGGGACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7119 | GCACTCTAGAGACGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7120 | ACGGAGACACGGTAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7121 | ATGGGAGCACTTAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7122 | TTGGAACCAGGCTGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7123 | TCTCTAAAGATGCCAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7124 | TAGTTGGTCCTGTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7125 | AGGCCACAGTACATGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7126 | CCTCAGTTCTGTCTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7127 | TCTCTAATCGTACCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7128 | TCGTAGACATCTGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7129 | TCTCTAATCACAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7130 | ACGAGCCAGTGGAGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7131 | AGAATAGTCCCATTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7132 | GTGCATACAGTGGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7133 | CTACCCATCCTTTACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7134 | TCTGGAACAAGCGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7135 | TTAGGCACAATCCGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7136 | GGGAATGTCGGAGGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7137 | TGCCCATAGCTGTCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7138 | CGTCCATCAGTCGATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7139 | TTGCCGTCATCATCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7140 | AACTCAGGTTCACGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7141 | CGGTTAAAGATATGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7142 | ACTTGTTTCTACTTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7143 | GTATCTTGTCGCGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7144 | CGACCTTGTCTGGTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7145 | GCGACCACAGCCAATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7146 | GTCATTTGTGGTTTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7147 | CGTTGGGGTATGAAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7148 | TGTGGTACAGTCACTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7149 | CTAACTTGTAAGGATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7150 | CGTGTAATCTTGTCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7151 | ATGAGGGAGGCAAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7152 | CCTACACCAGATGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7153 | CAGAATCAGCGATGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7154 | ACCCACTTCTGCGACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7155 | GCTGGGTAGAAGAAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7156 | GTCCTCATCGGCTACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7157 | CATATGGGTAAGTTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7158 | CAGCAGCTCTGCAGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7159 | GTCATTTTCGCTTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7160 | GAGTCCGCACAGACTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7161 | TTATGCTAGCCTCGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7162 | GCTCCTATCAATACCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7163 | CTGAAACGTTCGCGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7164 | ACTGAGTGTAGCAAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7165 | GATCTAGCACAACGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7166 | ATGGGAGGTTTGACTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7167 | TTAGGCATCAACTCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7168 | AAGGTTCGTTTGTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7169 | TCAGATGCAGCTGTTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7170 | CACTCCACACACCGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7171 | ACCTTTAGTTTCCACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7172 | CGAATGTAGGCAATTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7173 | CACATAGTCGACAGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7174 | TGGCTGGAGGCTAGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7175 | CAACCTCAGAGTAATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7176 | GATCGTAGTTAGAACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7177 | CGGACTGGTTCCAACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7178 | GACCTGGTCACATGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7179 | TCGCGAGGTGCGCTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7180 | TCGAGGCGTCAATGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7181 | ACTTACTGTGCGAAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7182 | GCAAACTTCTTCGAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7183 | CTTTGCGGTGTAATGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7184 | GTCTCGTTCAAACCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7185 | CTCTAATTCAGCTTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7186 | AGTAGTCTCATGCATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7187 | TTTCCTCCATGGTTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7188 | CGAGCCAGTCCATCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7189 | GGATTACAGGCTAGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7190 | TCATTTGCAAAGGTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7191 | AAGGCAGCAGACAAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7192 | GGACGTCCACTTAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7193 | TTATGCTCACATGTGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7194 | CTCTAATTCACCACCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7195 | GCAATCAAGTGGTAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7196 | AACCATGAGACAGACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7197 | ATCATGGGTTGAGGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7198 | GCGCAACAGTCAAGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7199 | ACCTTTAGTTTGACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7200 | GCAGTTACATGTTCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7201 | TACGGATGTCGTCTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7202 | ATCCGAAAGGACGAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7203 | CCATGTCTCACGGTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7204 | CTAAGACCAGCCTTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7205 | TTCGGTCCAAGGGTCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7206 | TTCCCAGTCAACACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7207 | GCACTCTCAGCCAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7208 | AAAGATGGTTTAGGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7209 | ACTGAACGTACGAAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7210 | CAGGTGCCACAGCCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7211 | CTCGGAGCATGTTCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7212 | TCAGATGTCTACTTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7213 | TGAGCCGTCGACCAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7214 | GACGTTACACTTGGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7215 | CACCTTGGTCATGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7216 | AACTCCCGTATAGGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7217 | AGCTTGATCTCTGAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7218 | GGACAGACAGGAATGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7219 | AAGTCTGAGCTGAAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7220 | CCATGTCAGAGATGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7221 | AAATGCCAGCGGATCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7222 | AGCCTAATCCAAATGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7223 | CAGATCAGTGTTGGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7224 | GATCTAGAGATTACCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7225 | CGAGAAGAGTATCGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7226 | CCGGTAGCACATCTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7227 | TATCAGGTCTATCCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7228 | TCAGCTCAGCAGATCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7229 | TGAGCCGTCCGCGCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7230 | CCTAAAGTCGGGAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7231 | TCGTACCCATGTCGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7232 | CCTCAGTGTTGTGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7233 | CTGCCTATCGGTCCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7234 | TGACTTTCACTTCTGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7235 | GCGACCAAGATGAGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7236 | GGGACCTCAGGAACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7237 | ATTATCCAGCGTGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7238 | AGCATACGTAGCCTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7239 | CTAGCCTTCTCAACTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7240 | GACGGCTTCAGAGACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7241 | CAGCAGCTCTTGTACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7242 | ACGTCAAGTTTCGCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7243 | CCATGTCAGAGCTTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7244 | AAGGCAGAGCTGTCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7245 | GCATGCGAGTGAACAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7246 | CGAGAAGGTATTCGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7247 | GGCCGATAGGAGTTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7248 | GCACTCTTCCGGCACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7249 | GAATGAATCACCACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7250 | GTCATTTCAATAGCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7251 | TCGGTAATCGGATGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7252 | AAATGCCGTAAAGGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7253 | AGCGTCGGTGGTACAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7254 | CTCATTAAGTGCGTGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7255 | TGACGGCTCAACACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7256 | TGCCCATGTCTGGTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7257 | CTGAAACCACATTCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7258 | CCTTTCTGTAGCGTGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7259 | GCTGCGAAGAAGGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7260 | AACTGGTAGCGATTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7261 | TATCAGGTCTTAACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7262 | GTTCTCGGTGAGGGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7263 | AGGTCCGCAGTACACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7264 | TACGGATAGGCTACGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7265 | GCTGCAGAGCGCTTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7266 | ATAACGCTCCCAGGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7267 | GTCAAGTCATGCGCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7268 | TCTTCGGCATACGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7269 | TTCTTAGGTTATGCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7270 | TTAGGACGTGCGCTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7271 | GTACGTATCCTTTACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7272 | CCGGGATAGCTAGTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7273 | AACTCTTTCAACTCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7274 | ATTGGACCAGGGAGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7275 | CGTCTACGTAAGTAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7276 | AAGCCGCCAGTTTACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7277 | TGACTTTCAGGCTGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7278 | GACTGCGTCCTCAACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7279 | CATCAAGTCATCTGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7280 | GGACAGATCACCACCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7281 | TCATTACTCCACTCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7282 | TACTTACAGGTGCAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7283 | CTGCCTAAGGCGATAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7284 | ATCATCTGTGTTCGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7285 | ATCCACCGTCAATGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7286 | TGGTTAGTCGGGAGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7287 | GGAATAATCAGTTTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7288 | CTGCCTAGTCTAGCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7289 | CGAGAAGCAACGATCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7290 | TGGCGCACACGTCAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7291 | CGCGGTACAAACTGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7292 | CGTAGGCCAATGACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7293 | GTGCAGCTCTCAAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7294 | ACTTACTGTCTAGGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7295 | CATGGCGCATCATCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7296 | CACCTTGTCATTCACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7297 | GAACCTAGTTTGTTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7298 | GTGCGGTGTAGGCATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7299 | GCTGCTTCAGATCCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7300 | TGCTGCTAGCCACTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7301 | GAGCAGACATGTAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7302 | AGAGTGGCATGCGCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7303 | GCACTCTTCTGAAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7304 | TCGTACCCATCCGGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7305 | CACAGTAGTCCTAGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7306 | TCAGGTAGTACCGGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7307 | GGACAGACAAACTGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7308 | GGGATGAAGGGTGTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7309 | TTCTCAAGTGGCCCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7310 | CGGCTAGAGCTGATAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7311 | TTCGGTCCAGCGTCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7312 | TGGCGCATCTATCGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7313 | TGGCTGGAGGGTTTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7314 | CTCTGGTGTACCGCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7315 | GTGCTTCCAATGGAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7316 | GACGTGCGTAATTGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7317 | CAGCATACAAGCGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7318 | GCTGCAGCAGGTGCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7319 | GAACCTAGTCAACTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7320 | ACTTTCATCTTCGAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7321 | CGATCGGAGCCCTAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7322 | AGCATACTCGGCGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7323 | GTAGGCCGTTCTGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7324 | TACTTACGTGCCTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7325 | TGACTTTAGCTACCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7326 | TCGTACCAGCGGATCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7327 | AGGCCACAGCGTCTAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7328 | GATCGATCACTGTTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7329 | ATGGGAGAGCTGCCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7330 | GTCCTCACATTCGACA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7331 | TGGGAAGTCTAGCACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7332 | TACACGATCGGTTCGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7333 | GTTAAGCCAATCTGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7334 | ACTTTCAGTCTGCGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7335 | AGAGCGAAGAGTACAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7336 | TGGACGCCATGAACCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7337 | CCGTACTTCCAAGTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7338 | AGGCCGTAGATATGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7339 | GGTGAAGCACACTGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7340 | GTAGTCATCGTAGATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7341 | CATCAAGGTTGATTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7342 | ACTATCTCACTATCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7343 | CCACGGAAGGAATGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7344 | ACAGCCGCACCAACCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7345 | ATCACGACACGGCTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7346 | TATTACCGTGCCTGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7347 | TTAGTTCTCACAGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7348 | CACATTTAGGGTGTTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7349 | CATTCGCAGGACAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7350 | TACGGTAAGCACGCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7351 | CGATGTAAGTCTCAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7352 | GCACATAAGTCTCGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7353 | AAGACCTTCAGAAATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7354 | ACGGAGATCCCTTGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7355 | GGCTCGAAGAGTAATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7356 | CACAGGCGTGCCTGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7357 | ACCAGTATCGGTGTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7358 | ACCGTAACAGTCACTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7359 | GTGCATACAATGACCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7360 | GGAAAGCCACGGCTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7361 | TGGTTCCCACTAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7362 | AAGCCGCAGACTAGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7363 | CGATGTACACAGAGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7364 | CTTACCGCATACGCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7365 | CCACGGAAGGAGTAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7366 | CACACTCTCATTGCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7367 | TCCACACAGATGTTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7368 | CATCAGAAGAAGAAGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7369 | ATTGGACCATTACCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7370 | TCTCATAAGTAGATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7371 | ATCCGAACAGGGTACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7372 | CCTACACGTAGCTGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7373 | TAGAGCTAGTCAAGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7374 | GGACATTAGAGTACAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7375 | TGACAACTCTGAGGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7376 | TACTTACTCCTGCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7377 | ACGTCAAGTACTTAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7378 | AGGCCACAGTCCATAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7379 | CCGTACTAGGACACCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7380 | ACACCAATCGGATGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7381 | CGTGTCTTCTGCAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7382 | CACACAACACATTTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7383 | TGACAACTCGCACTCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7384 | GGTGAAGAGCGATAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7385 | CCTAGCTAGCTAACAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7386 | TCAACGATCACGCATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7387 | AGTGAGGCAAGTCATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7388 | TGACGGCAGTACTTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7389 | ATGGGAGTCAAGGCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7390 | GATCGTATCCTAGGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7391 | GGACATTTCAAAGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7392 | AAACGGGGTCAACATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7393 | ATCACGATCACGCGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7394 | CGGTTAAAGTGGGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7395 | TTGGAACGTTCAGACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7396 | CAGCCGATCCAGTAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7397 | TGCACCTTCTTCTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7398 | TCGCGTTTCGTGGGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7399 | TTTACTGAGGGATACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7400 | CGCTGGAAGAGTAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7401 | AAACCTGGTCCTCCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7402 | AATCCAGTCAACGCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7403 | CAGAGAGTCCCGACTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7404 | ACACTGACAAGCGATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7405 | ACAGCTATCCAAACAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7406 | ACGGAGAGTCTGATTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7407 | GTGAAGGAGCGCTCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7408 | CACCTTGCACAACGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7409 | GAACCTATCGCGCCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7410 | CAAGGCCCATTCTCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7411 | GACGCGTCATCACGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7412 | TTTGTCAGTCTAGAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7413 | TCAGCAACAATGAAAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7414 | GTAACGTGTTAGATGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7415 | CGACTTCTCTCATTCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7416 | ACGTCAAGTATGGTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7417 | TGAGGGAAGCGCCTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7418 | TCAATCTCAGCCTATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7419 | TGGGAAGGTAGCGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7420 | CACACTCGTTACAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7421 | CATATTCAGGTGGGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7422 | CGTCAGGAGGAGTCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7423 | CGGAGTCTCCGTAGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7424 | GACGTGCAGCGTGAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7425 | CTGAAACCACCACCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7426 | GAAGCAGTCATCGATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7427 | CCCATACCATGCGCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7428 | GGGCACTAGATGCCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7429 | TAGACCATCGTATCAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7430 | AGACGTTTCTTACCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7431 | CACTCCAGTATGAATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7432 | ACTGAGTAGATCCCGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7433 | TGGCCAGCAAGCCATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7434 | CCAGCGACATGTTCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7435 | CTCGAGGGTAAATACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7436 | TGTATTCTCAGAAATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7437 | TCTCATAGTCCGAACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7438 | ACGGGTCGTATGGTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7439 | CTACGTCTCTTTACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7440 | CCTAGCTAGTGAATTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7441 | CCGTTCAAGCAGGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7442 | GCGCCAACAATCTACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7443 | AACTCCCAGATCGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7444 | AAATGCCGTAAGAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7445 | GCGCAGTTCACGACTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7446 | ACACCGGAGCTGGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7447 | AACTCCCTCAACGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7448 | AGGTCATAGGGAACGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7449 | TCAGCAAGTACCCAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7450 | GTAACGTGTCCAACTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7451 | ACACCGGAGGGTCTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7452 | ATCCGAATCAGCGATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7453 | CTCAGAACAGACGCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7454 | CTGGTCTGTAAGTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7455 | TCACAAGGTGGACGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7456 | TCTTCGGAGGAATGGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7457 | CTCGTCATCATGTCCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7458 | GCACTCTAGTAGCGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7459 | GATCGATAGGGCATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7460 | GTCACAAAGCAGCCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7461 | TAGTGGTCAAGCCGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7462 | TTCTCAAGTAACGCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7463 | CGACCTTGTTTGTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7464 | ATCTACTAGTGTCCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7465 | ATTTCTGTCCTGTAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7466 | GTAGTCATCCGCGGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7467 | AACTTTCTCCACGAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7468 | CTACCCACAGACGCTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7469 | TGCGGGTAGGCCGAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7470 | TGCGGGTCACTGTTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7471 | GTGAAGGCAGAAGCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7472 | GCAGTTACAATCGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7473 | ATGGGAGGTGTATGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7474 | GGAAAGCCAATCGAAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7475 | CCGTGGACATGAAGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7476 | CGAACATCAGGTGGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7477 | TCATTTGAGTCCATAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7478 | TGACAACCACGGTAAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7479 | ATCCACCTCGTAGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7480 | CACAGTAGTCTGGTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7481 | GTGCAGCCACTAAGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7482 | GCATGTATCCAAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7483 | GGGCATCTCCAAATGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7484 | TACCTTAGTGGGTCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7485 | CTTGGCTGTGGTGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7486 | GCTGGGTGTCATCCCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7487 | GCGACCAGTTTGGGCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7488 | AAGACCTGTTTCGCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7489 | GACGGCTGTTCCGGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7490 | CCGTACTTCACCCGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7491 | GATCGCGCAGGGTACA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7492 | TACAGTGGTATATCCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7493 | CTGATAGAGCGTAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7494 | GTTACAGCAGCTATTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7495 | TACCTTAAGAGCTGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7496 | GAAACTCTCTGCCCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7497 | TACGGATGTTCTGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7498 | CTCTGGTAGCATGGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7499 | ATCATCTAGTGTCCCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7500 | CAACCTCGTCAGAGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7501 | GCATGCGGTCAAAGCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7502 | CTCACACGTGTGCCTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7503 | GATGCTAGTGATGTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7504 | GCAATCATCTTCATGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7505 | TGTCCCACACTTGGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7506 | GTTCTCGGTAGCACGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7507 | GAAATGAGTCGTTGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7508 | GGTATTGTCTTGCATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7509 | CGTGAGCCACACCGCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7510 | GGCAATTCACATTTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7511 | ATGGGAGGTGGTCCGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7512 | CTTCTCTGTCTTTCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7513 | TCTCATATCTTCGGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7514 | TTAGGACAGTTCGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7515 | CCTAGCTCAGCGTAAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7516 | CTACACCGTGCAGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7517 | TCAGGATAGATGGCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7518 | GCAGTTAAGAGTTGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7519 | ATGTGTGTCCAGAGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7520 | CTCGAGGAGTTCGATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7521 | GTAACTGCATCGACGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7522 | ACTGAACGTTTCCACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7523 | TGGGCGTTCCACGAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7524 | ATAAGAGTCAGGTTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7525 | ATTATCCCACCGAATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7526 | GTTCGGGTCTCTAGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7527 | CGCGTTTGTTTCCACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7528 | GAGTCCGGTAAAGGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7529 | CACATTTAGGGATACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7530 | TGAGCATCAGGTCTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7531 | CGGGTCACAATCAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7532 | CCACTACGTGTAAGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7533 | GTTCTCGCATCCGCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7534 | CTCGTACCACACATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7535 | TGACTAGGTGAGTGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7536 | ACTGAGTTCTAGAGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7537 | CTGCGGACAATCGAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7538 | TGGACGCCACCAGATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7539 | CTGCTGTGTAAATGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7540 | ATTGGTGTCGGCGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7541 | AGGTCATAGGGATGGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7542 | CTCATTACAAGGTTTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7543 | AGTGAGGTCCCAAGAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7544 | CTTCTCTGTTAAAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7545 | TTAGGACCAGTGGGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7546 | CACCTTGTCTTGAGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7547 | TCTGGAACATCACGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7548 | GTTCTCGCAATTCCTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7549 | ATAAGAGTCGTAGATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7550 | GATCGTAGTTATGCGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7551 | GATCGTACAAGCCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7552 | CTACACCTCATGTCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7553 | GGCTCGATCCTATGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7554 | CCTCAGTCATGAGCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7555 | GAACCTACAGATAATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7556 | GTAACGTCACCAGATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7557 | ACAGCCGCATCGTCGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7558 | CCTAAAGGTAGCAAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7559 | AAACGGGTCCCAGGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7560 | ACTTGTTGTTCGGGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7561 | GTGAAGGTCGGCTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7562 | AAGGTTCGTCTGATCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7563 | GGACATTCATTCTCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7564 | GTTCTCGGTAACGCGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7565 | GATGAGGGTCAACTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7566 | TAGAGCTTCCTTCAAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7567 | ACGATGTGTACCCAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7568 | TTGTAGGAGATCACGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7569 | CGATCGGGTAATCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7570 | TGGACGCCACGGCTAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7571 | CTACACCAGAAACCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7572 | CCTTTCTAGGCAAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7573 | GTCTCGTGTCAATACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7574 | TCTCATATCCTCCTAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7575 | GCATGATAGTATTGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7576 | CCACGGATCCACGCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7577 | CGATTGAGTAAAGTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7578 | GTCGGGTCAAAGGTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7579 | GAAACTCAGACGACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7580 | GTTCTCGGTTTGTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7581 | GAGGTGATCTCCCTGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7582 | GGGACCTTCCATGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7583 | ATTACTCTCAACGAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7584 | CGGAGCTTCATGCTCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7585 | CAGATCATCCAAATGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7586 | GGTATTGTCTGTCTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7587 | GAGGTGACAGCCTATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7588 | TCATTTGTCCATGCTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7589 | GGCTCGACATGCTGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7590 | CTTAGGATCCGAAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7591 | TGGCGCAGTTGCCTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7592 | ATTACTCGTCCTGCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7593 | CCTTACGCATCAGTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7594 | AGCTCTCGTAGCCTCG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7595 | CGCTATCGTTCCGTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7596 | GATGAGGAGCTCCTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7597 | CAGGTGCGTCGGCATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7598 | GTACGTACAATGGATA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7599 | TTCTCAACATTTCACT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7600 | GGATTACCAGTTTACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7601 | CCTCTGATCCCTCTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7602 | GTTCATTCAACCGCCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7603 | TCGGTAAAGCTCAACT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7604 | TTCTACAAGGCATGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7605 | CGACCTTAGACTGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7606 | CACCTTGCATTCCTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7607 | ACGATACCATGGTCTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7608 | AAAGCAACAGCATGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7609 | CATCGGGAGATGCCAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7610 | CGACCTTGTATCTGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7611 | GACTGCGCATGATCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7612 | CCACGGACAATGCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7613 | CGGGTCAGTGAGGCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7614 | GAAATGAAGCTTCGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7615 | GGGCATCCAGACTCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7616 | GCTCCTACAGGATCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7617 | GTGCTTCGTTTAGGAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7618 | CCAGCGAGTTCTGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7619 | GTCGTAACACTTCGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7620 | GATCAGTTCACGCGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7621 | GGGTTGCAGACAGACC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7622 | TTCGAAGAGTTAAGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7623 | AGAGCGAAGGCCGAAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7624 | ATAAGAGTCAGGATCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7625 | CACACCTTCTTCTGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7626 | CTGATAGCATATGGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7627 | GCGAGAAGTCTGCGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7628 | ACCCACTGTGGGTCAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7629 | AACTTTCAGCCACCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7630 | CACACAATCTGCTTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7631 | TGCACCTAGTTATCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7632 | TACGGGCAGATTACCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7633 | CTCTGGTAGCTAACAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7634 | CACACCTAGCGCCTCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7635 | ACTTTCAAGTTGTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7636 | CTCGGAGTCTTGCATT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7637 | CGGCTAGCACAGTCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7638 | GGTGTTAGTTTGTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7639 | CAGCTAACACAGACAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7640 | CTGATAGGTGTTTGGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7641 | TTGCCGTTCGCCGTGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7642 | ATCATGGAGACGACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7643 | TCATTTGGTTACTGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7644 | GGACGTCCAACAACCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7645 | GATCAGTTCACCGTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7646 | TGCCAAATCTACGAGT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7647 | GCTGCAGAGCCCAGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7648 | CTGAAACCATGGTCAT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7649 | GATGAGGTCGTTTATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7650 | GTCGTAAGTTCTGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7651 | CAAGGCCAGAGGGATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7652 | GTCGGGTGTCTTCGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7653 | CGTCCATTCGGTGTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7654 | ACACTGAAGGTGGGTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7655 | ATTCTACTCTTGTATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7656 | AGCGTATAGACTGTAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7657 | AACGTTGCAGAAGCAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7658 | TGGCTGGCATCACGTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7659 | GTCGTAATCATTATCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7660 | CAAGAAATCATGCTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7661 | GTCGTAAAGAGCTGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7662 | TCGCGAGTCAGGCGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7663 | AAATGCCGTCGTGGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7664 | CTCGAGGTCATAAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7665 | GGAACTTGTAATCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7666 | CACATAGTCGTCGTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7667 | AGCTCTCTCGTCTGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7668 | ACTGATGCACTGTGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7669 | CACATTTAGATGGGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7670 | CTCCTAGGTGAAATCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7671 | CCTTACGTCTACTATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7672 | AAAGATGCAAGCGAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7673 | GTGTTAGCAGGATTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7674 | TACCTATAGGTGATTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7675 | CTCTAATAGAAACGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7676 | GATCGATTCCTTGGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7677 | CCTTTCTAGCTAACTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7678 | ATTTCTGGTCTAGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7679 | TGCGCAGGTGTGACCC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7680 | ACTATCTAGCCAGGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7681 | CCTCTGAAGACCTTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7682 | ATAGACCTCTGCTGTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7683 | CAGCAGCCATCACGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7684 | TCATTACAGTCCATAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7685 | CTCTGGTTCGGAATCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7686 | AAAGTAGAGCAAATCA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7687 | CGGACGTTCATCATTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7688 | ATCACGATCACTGGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7689 | TTTGTCACAGTAGAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7690 | CGAATGTCATTCCTCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7691 | CACCACTGTTATCACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7692 | GACGCGTGTGTTTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7693 | CTGCTGTAGTATCGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7694 | AAGCCGCCAGTCACTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7695 | AAAGATGTCTCGCATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7696 | ATGTGTGTCATGTAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7697 | GCAATCAAGACAATAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7698 | CGGAGTCCACCTATCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7699 | CATCAGACAGTCTTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7700 | GGCCGATGTACGACCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7701 | GTGAAGGTCTTCGGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7702 | TGTGGTACACCACGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7703 | ACCAGTATCTACTATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7704 | GTAGTCAGTTCACGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7705 | GTGCATAAGTGGAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7706 | TGTCCCAGTTTGTTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7707 | TCACAAGAGGACATTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7708 | TTCGAAGTCATAGCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7709 | GGGACCTCAGCGATCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7710 | CTAGCCTAGAGTAATC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7711 | CATGCCTAGAAACCTA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7712 | TGCCCTAAGCAATATG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7713 | TACTCGCAGTACTTGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7714 | AGGTCATAGAATTGTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7715 | CGCTTCAGTCGCGTGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7716 | CCTACCAAGTATCGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7717 | CGATTGACATTGAGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7718 | CCAATCCGTTGTACAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7719 | GTGCATACAACTGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7720 | TGAGGGACACCGCTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7721 | AGATCTGGTCCGAAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7722 | TGATTTCTCGCATGGC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7723 | GCATGTAGTCGCTTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7724 | TCAATCTCAGCCACCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7725 | CGCGTTTAGCTCCCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7726 | CAGTAACAGCGCTCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7727 | GTGTTAGAGCAGATCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7728 | CCAGCGAAGCTAGGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7729 | GACTACACAATCAGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7730 | TTTGCGCAGGACAGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7731 | GCGCGATAGTGACTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7732 | GGGTTGCCATAGAAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7733 | CGCGTTTTCCAATGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7734 | AAAGCAAAGTACGATA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7735 | ATCTGCCAGATCGGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7736 | TCAGCAACATGGGAAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7737 | GCAATCAAGCTTATCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7738 | CGTGTAAGTGATAAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7739 | TCAGGATAGTGAACGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7740 | CTCTACGTCCGCATAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7741 | CTAGTGAGTCGCGGTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7742 | CTGTGCTTCGCGTTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7743 | CGTCCATAGACACTAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7744 | ATGTGTGAGATAGGAG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7745 | ACTGCTCGTAAATGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7746 | GCATGCGAGGAATGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7747 | AGCTTGAGTTCTCATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7748 | AGAGCGAAGCCATCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7749 | TTCGGTCTCAATCACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7750 | CGTCACTCACAGCCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7751 | TTGGCAAGTATTCTCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7752 | GGGACCTGTGTGCGTC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7753 | TCTATTGTCGCATGGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7754 | CACATTTTCTTGACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7755 | TACTCGCCACAGGTTT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7756 | GACTGCGGTATCGCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7757 | GAGCAGATCCCAAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7758 | GATTCAGTCAAACCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7759 | ACTGATGTCCTGTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7760 | CGTTGGGAGCAGCGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7761 | GGGAATGCAAGCCGCT | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7762 | GAAGCAGTCCCGACTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7763 | CTCGGAGTCTAACTGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7764 | GTGTGCGTCCGCATAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7765 | CAGATCAGTCAGTGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7766 | ACGATGTCACAAGCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7767 | CTCCTAGTCTTCGAGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7768 | GCAGCCAAGGGTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7769 | CTCGTCACATTAGCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7770 | CAACCAAAGTGTCCCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7771 | CTTAACTGTCTAGAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7772 | AACGTTGAGTGGGTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7773 | GTGCGGTTCCGTCATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7774 | AGTAGTCGTAGCTAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7775 | GGATGTTCACAGGCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7776 | CATGACACAGTCTTCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7777 | GACGCGTGTGTGAATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7778 | GCTGGGTGTTCCCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7779 | TTCTCCTGTCTCGTTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7780 | AACACGTAGATGAGAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7781 | GACTGCGCAGGCTCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7782 | CAGCATATCCCTTGCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7783 | CCTACACCATCCAACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7784 | GTAACTGTCCGAATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7785 | CATCGGGCAGTTCCCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7786 | GTACTCCAGGCTCATT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7787 | AAACCTGCAAGTAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7788 | CGTCAGGAGTTATCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7789 | GGAATAAAGCCACCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7790 | CCAATCCCAGATAATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7791 | GTCTCGTTCCGGGTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7792 | GGCAATTCAGCCTTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7793 | AAGACCTAGACAAGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7794 | CGTCCATTCCACTGGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7795 | TTGGAACGTCGTGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7796 | GTTCTCGTCTTCATGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7797 | CATGACACACAAGTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7798 | CACTCCAGTCTAGCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7799 | CACACTCGTTAAAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7800 | CAGCTAAGTCAGGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7801 | GGCTGGTGTAAGCACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7802 | GGCGACTCAGTATCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7803 | TTAGTTCAGACTAGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7804 | GCAGCCAAGATTACCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7805 | AGGTCCGTCAGAAATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7806 | GCAATCAAGTTGAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7807 | GCTGCTTAGTGCAAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7808 | CAGGTGCCACACCGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7809 | GAACATCAGGAGTTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7810 | ACGGGTCCACTATCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7811 | TACTTACTCTACTTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7812 | CTGGTCTTCCTAGAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7813 | CACCACTTCTAACTGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7814 | TACTTACCAGCGAACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7815 | CTAGTGAGTAGGCATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7816 | CTCTACGGTCACCTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7817 | CACCACTTCAAGGCTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7818 | CTCGAAATCGTTTATC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7819 | CTCTGGTTCGAGCCCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7820 | GTTTCTACACTTAACG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7821 | AAGTCTGAGAGTGACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7822 | GCTCTGTGTGCAGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7823 | GTCATTTCAAGAGTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7824 | AAACGGGTCTTGACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7825 | TGACTTTCACGGATAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7826 | GTCGTAATCTCAAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7827 | ACACCCTAGCACCGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7828 | TTGCGTCTCTAACGGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7829 | TACCTTAGTCTCTCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7830 | ACAGCCGGTTGCTCCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7831 | GACGTTAAGCGACGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7832 | CTACATTAGGGCACTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7833 | GTTCTCGTCTGTCTCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7834 | TCTTCGGCAGCGATCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7835 | CAGCATATCTTTACAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7836 | ACCGTAAGTCTAACGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7837 | CTCCTAGAGTTTGCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7838 | TAGACCACATGGTAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7839 | TGACTTTGTCGTGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7840 | TGAGAGGTCAATAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7841 | GAAACTCAGTGAACAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7842 | GGCTCGACACATAACC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7843 | CAGAATCAGCTAGCCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7844 | GTTCATTGTTAAGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7845 | CCACCTAAGGATCGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7846 | GTTACAGAGTTATCGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7847 | TCTGGAAGTGGTAACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7848 | GTTACAGCATATGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7849 | CAAGAAAAGGCATGTG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7850 | CCACTACAGCGATTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7851 | GGGCATCAGACTCGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7852 | CGAACATCAACAACCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7853 | TCAGGTACATGCTGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7854 | CAGCTAAGTTCTGTTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7855 | CTAGAGTCATTTCAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7856 | CGTTAGAGTCGCATAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7857 | AACTGGTTCTGAGGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7858 | GGAATAAAGCGCCTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7859 | GCTCTGTAGTGTTAGA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7860 | TTGAACGTCCGCTGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7861 | GAACCTAGTCATATCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7862 | TGAGCCGTCCGTCAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7863 | TACGGGCTCGGACAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7864 | ATTACTCCATTCTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7865 | GCGCCAACAGTAGAGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7866 | GAGTCCGTCTAACTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7867 | TAAGTGCAGGACAGCT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7868 | GTCACGGGTGTTGGGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7869 | CGTAGCGTCAGTCCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7870 | CAGCGACCATGTCTCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7871 | GATGAAACATGGGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7872 | AAACCTGTCCCTCAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7873 | CACACCTTCTTCGGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7874 | TTAGGACAGCTGTTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7875 | GAAATGATCACTATTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7876 | ACGCCGATCTCCGGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7877 | TGCCCATCAACGATGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7878 | TAAGAGAAGTACGCGA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7879 | AAGTCTGGTTACCAGT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7880 | GTGTTAGGTCTAGAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7881 | GTATCTTCAAGTTAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7882 | TCAGCAACACTCAGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7883 | CGAGAAGGTGAGTGAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7884 | CCGGGATTCTGCGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7885 | CGTAGCGGTGCATCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7886 | CTTTGCGAGATGAGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7887 | CGACTTCGTGCAGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7888 | TCAATCTCAATGTAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7889 | CTGCTGTGTTATGCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7890 | GTTACAGAGGGCTCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7891 | ATAAGAGGTATGCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7892 | TGAGGGATCGCCAGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7893 | AATCGGTCACGGATAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7894 | TAGTTGGCATGAAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7895 | TGACGGCAGCTTCGCG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7896 | CGCCAAGGTAAGTTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7897 | TGCCAAAGTATGAATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7898 | CTCGTACGTTCCACAA | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7899 | GTGAAGGGTCGTTGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7900 | CGCGTTTGTGCACGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7901 | CGAGCCAGTTTGGGCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7902 | AGAGTGGAGACAAAGG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7903 | TAAGAGAAGCCTTGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7904 | CTGTTTATCCAAACTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7905 | CGAGCCAGTAGCGTCC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7906 | GAATAAGGTACAAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7907 | CGCCAAGTCAGCTCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7908 | CTAAGACGTAGCGCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7909 | CGAACATAGCAGCCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7910 | TTGCGTCTCGGATGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7911 | AGATCTGCACCTCGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7912 | GACTAACAGGAATGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7913 | TTCTACATCGAGGTAG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7914 | AAGGAGCAGGAATTAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7915 | AGAGCGACACACAGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7916 | AATCCAGGTCCAACTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7917 | TGACGGCCATCCAACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7918 | ACACTGAGTGCACTTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7919 | TGAGAGGTCTCATTCA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7920 | CACTCCAGTCTTGATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7921 | ACTATCTGTACATGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7922 | ACTTTCACACCCATTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7923 | GCGCCAAAGTGACTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7924 | TATGCCCGTCTCCATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7925 | GTTACAGTCATCGGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7926 | CGATGGCAGGAGTCTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7927 | CTCAGAAAGTTCCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7928 | TGTCCCAGTTCTGGTA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7929 | TAGAGCTGTTACGCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7930 | ACCGTAAGTAGAAAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7931 | AGTGTCATCCTGCCAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7932 | CCTCAGTCATCGTCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7933 | CACAGTAAGTGTACTC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7934 | ACATACGAGATATGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7935 | CCGTGGACATACTCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7936 | CATATTCTCCTGCCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7937 | CACCACTCAGTCACTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7938 | CGACTTCAGCACCGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7939 | TCGGGACCAAGGTTTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7940 | TAGCCGGCAGCATACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7941 | AGGTCATTCATACGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7942 | GATCGATTCGTCCAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7943 | GCCAAATTCTCTTGAT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7944 | CTACATTAGGCCCTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7945 | ACGCCAGAGCTGCGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7946 | ACCAGTAGTTACAGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7947 | AGGTCCGTCTTATCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7948 | AGCTCCTTCCTAGTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7949 | GTCCTCACAGTGACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7950 | TACACGATCAACGAAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7951 | TCTCTAATCTTAGCCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7952 | CATCAAGTCGTTACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7953 | CCAGCGAGTAGGCATG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7954 | AGCGTATGTTCCATGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7955 | TGACTTTAGGCGCTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7956 | AACCATGTCCTCGCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7957 | TCTATTGAGGCAGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7958 | GGCCGATAGCCTTGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7959 | TCACAAGAGTATGACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7960 | CACACCTGTAAGTTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7961 | TGGGAAGGTATGCTTG | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7962 | TTCTCAACAGACACTT | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7963 | CGTAGGCCAAGGACTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7964 | ACCTTTACATTAACCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7965 | AGCTTGAAGCAGCGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7966 | ACGGCCACATCCCACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7967 | GTGTTAGGTGGAAAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7968 | GACGTTAAGCTTTGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7969 | CACAGTACACCAGCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7970 | GGCCGATTCGTGGGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7971 | CGAATGTCATAGTAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7972 | ACACCCTAGCGGCTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7973 | CCTAAAGAGTTCGCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7974 | GAACCTACATGCGCAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 7975 | AAGGAGCTCTCTTGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7976 | TCAGATGAGTTTCCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7977 | TTTGGTTTCCTACAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7978 | ATCATCTTCTTGTTTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7979 | TACGGTAAGGCGTACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7980 | AGAGCGATCAATAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7981 | GTAACGTGTCGGCATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7982 | TGTGTTTTCGATGAGG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 7983 | TCCACACAGCGTGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7984 | AGCAGCCTCGCTAGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7985 | TTTGTCAAGACCTTTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7986 | GCCAAATGTTATGTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7987 | CTTACCGCACAACGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7988 | CAGCATAGTCGACTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7989 | GGGACCTAGATACACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7990 | TTGCGTCCATTGCGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7991 | TTAACTCCATGGTCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7992 | CCTTCCCCACAGGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7993 | GAGTCCGTCAGCAACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7994 | TGAAAGAGTCTGATCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 7995 | ACAGCCGTCAGGCGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7996 | GCTGCTTGTACAGTTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7997 | GTCGGGTCATCACAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7998 | GCTCCTATCGTCTGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 7999 | CTGCCTATCGTACCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8000 | AGCATACTCCTCTAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8001 | ACTTACTGTCCGAACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8002 | TGATTTCAGAGGACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8003 | CGGGTCACATCGGACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8004 | CACCTTGAGCCCGAAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8005 | CGAGCCACAACTGCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8006 | CGATCGGGTTACCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8007 | TAGTTGGAGTAACCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8008 | ATCATGGTCCTGTAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8009 | TCGCGAGTCAGATAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8010 | GGCTCGAAGGCTCATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8011 | CGTGAGCTCGATAGAA | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 8012 | GCATGCGTCATAGCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8013 | TACACGAGTCTGCGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8014 | GGCTCGACAGCTGCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8015 | ACAGCCGCAAGTTAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8016 | GGGATGAGTAGAGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8017 | AAGGCAGTCGTTACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8018 | GTGCAGCCATCCTTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8019 | GGGCATCCATGCTGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8020 | ACTATCTGTCGCATAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8021 | TGGCTGGGTCCCTTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8022 | ACACCAACAACTTGAC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 8023 | GGGAGATAGTTCGATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8024 | CACCACTTCGCTAGCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8025 | GTCCTCACATTAGCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8026 | AGACGTTCAATCTACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8027 | GCATGCGAGTCCCACG | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 8028 | TTCTTAGCATTGGGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8029 | TGTTCCGAGCCCTAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8030 | ACGGCCAGTCGCGGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8031 | ATCCGAACAGCTGTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8032 | GCAAACTTCTGGCGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8033 | AGTTGGTAGTCTCCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8034 | TGAGCCGGTACCGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8035 | CATCCACAGACACGAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8036 | CGGAGCTTCGTCCAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8037 | TCGCGAGTCTTTACGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8038 | CTCCTAGTCGGTCTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8039 | GTAGTCACAAGCGAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8040 | CATATTCTCAGAAATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8041 | CTGTTTACATACAGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8042 | TGTGTTTGTCAACTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8043 | AGTGAGGTCACCATAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8044 | CTGATCCTCCAGGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8045 | TCACGAAGTGCACTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8046 | TATTACCTCATAACCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8047 | GCCTCTAAGCTAACTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8048 | CTGAAACCATCAGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8049 | TCAATCTGTTTGCATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8050 | GTCTCGTCACCAGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8051 | GCGGGTTTCACCCTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8052 | TATCTCATCACGATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8053 | CACACAAGTAACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8054 | TGCCCTACATCACGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8055 | CGTGAGCTCACCGGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8056 | ATTGGTGGTAAAGGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8057 | GGATGTTGTCTAGTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8058 | CACAGGCCATAAAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8059 | GGAGCAACATCCCACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8060 | GACTGCGGTTTAGGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8061 | AACTCTTCATAGGATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8062 | GGACAAGTCTCGGACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8063 | CAACCTCTCTTGAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8064 | GTCACAATCGACAGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8065 | CTCATTATCCCATTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8066 | TACCTATAGAGTGACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8067 | ACCAGTAAGGCTAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8068 | TGACGGCCAGGGATTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8069 | CACAGGCCAGTACACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8070 | GATGAAAGTTCACGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8071 | CTGGTCTTCTCGTATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8072 | ACTGTCCGTCTGGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8073 | TCACGAAGTCTAGCCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8074 | AGTGTCATCAGTGTTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8075 | ACAGCCGTCGGAGCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8076 | CTAGCCTGTAAATACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8077 | TGCCCATGTGGGTCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8078 | TCGGTAAGTCTTCTCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8079 | TTTGCGCAGCTCCCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8080 | CATATGGCACAAGACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8081 | CCATTCGGTGATAAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8082 | TACTCGCCAGGGCATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8083 | TTGCCGTCACGGTTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8084 | ACCAGTAAGTAACCCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8085 | TTTGGTTAGTGTCCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8086 | CACAGTAGTCAATACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8087 | ACGCAGCGTCAGAATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8088 | AGAGCGATCGCAGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8089 | ATTCTACGTACCGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8090 | CGTAGGCCAGCGTTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8091 | CAGTCCTTCCAAGCCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8092 | TCGCGTTAGTCCATAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8093 | TGGCCAGAGAGAACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8094 | TGGTTCCAGTGTCCCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8095 | TGGTTCCGTCGAAAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8096 | CACAAACAGCTGAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8097 | CAGCGACGTTTGACAC | ERX6700457 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN219 | nan | |
| 8098 | CTTAACTAGGAGTACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8099 | GTCACGGAGGCCGAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8100 | CTTACCGGTCACACGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8101 | CATGGCGTCGCGATCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8102 | GCTGGGTAGTCTCAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8103 | TAAGTGCGTAAACACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8104 | CTCGGAGAGTACATGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8105 | GACGTTAAGGAGTTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8106 | ACAGCCGGTCTAGAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8107 | CCTTCCCGTGTGAATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8108 | GCAATCACAAGGACTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8109 | CTGCCTAAGTCGCCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8110 | CAAGAAAAGCCCAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8111 | CAAGATCAGGCCCTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8112 | CCGTACTTCTGCAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8113 | GCGCGATGTAAGTTCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8114 | CCTCTGATCAAGCCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8115 | CCACGGACAAGTAATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8116 | ACGCAGCGTCTCTTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8117 | GGAACTTAGCTTTGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8118 | ACACCGGTCACAATGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8119 | GTCATTTGTAACGTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8120 | CTAATGGCATACCATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8121 | GTACGTAGTCAACATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8122 | GCATGCGTCGTTGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8123 | TACGGTAGTACCGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8124 | AAATGCCGTACCGTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8125 | AAGGAGCGTGCCTGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8126 | ATAGACCGTGACCAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8127 | CCATTCGAGTGGTCCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8128 | AGATCTGCATTGGGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8129 | ACTGATGCATTTCACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8130 | AGCTCCTCAGACGTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8131 | CTACATTCAAACTGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8132 | AGAGCGAGTTCCACAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8133 | GAGGTGAGTTGCGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8134 | AGAGCGATCAAAGTAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8135 | CAAGGCCTCTCACATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8136 | CGCGTTTTCATCGCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8137 | GGAGCAAAGGATATAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8138 | AATCCAGCATCGTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8139 | CCTTTCTAGCGTGAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8140 | CCCTCCTGTCTGGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8141 | AGAATAGCATGGGAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8142 | TGCTACCTCTGTCAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8143 | GCACTCTTCTGTCCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8144 | TGGGAAGGTGTCTGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8145 | GTAGGCCTCTGCAAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8146 | TGCCCATGTCGCATAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8147 | CCAATCCAGCAATCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8148 | TGCGCAGGTTGTGGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8149 | ACACCAAGTTCGGCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8150 | TGCGGGTCAGACGCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8151 | GGAATAAAGTACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8152 | TGACTTTCATTCCTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8153 | GCACTCTGTACCGTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8154 | AGTGAGGGTGCCTGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8155 | ACGGAGACACATTCGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8156 | CGTTAGATCCAACCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8157 | CCCATACGTATAGGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8158 | CTCGTACAGCAGACTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8159 | CATCGAAGTTCAGACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8160 | TCCACACTCGTACGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8161 | CATGACACAGTTCATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8162 | CAGGTGCAGAGTGAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8163 | TAGGCATAGTGAACAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8164 | ACGATACCACGAAGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8165 | TGGGCGTGTAGAGGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8166 | ACGTCAACATCGATTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8167 | ACGCCGAGTTTACTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8168 | CCGTGGAGTGATGTGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8169 | ACATACGGTACTCGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8170 | CGGCTAGTCGGAAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8171 | ACGCAGCGTCGGCTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8172 | ACTTACTCAGACAAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8173 | CTGTGCTCATTCCTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8174 | GCCAAATCATTCTCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8175 | GGTGCGTTCCTGCTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8176 | TACTTGTCACCCTATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8177 | TGTGTTTCATCGATTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8178 | CGAGCCATCCTGCCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8179 | ACTTACTAGGAGTCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8180 | GCCAAATGTTAGGGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8181 | CCGTACTTCTCTAGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8182 | AGCTCCTTCAAGGTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8183 | CTAGTGATCGGCTTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8184 | GGACGTCAGCGTCAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8185 | TCAATCTTCCTATTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8186 | ACTTGTTAGGACAGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8187 | CGTGAGCTCTGATACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8188 | CTTCTCTGTGCTGTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8189 | CCTAGCTCATGCGCAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8190 | TTTGCGCGTAGCGTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8191 | TACTCATCATTCTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8192 | TTTACTGAGCTTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8193 | GGGCACTTCGGTGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8194 | CGGACTGTCGAGCCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8195 | AGACGTTGTACCGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8196 | ACATCAGGTTATGCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8197 | TGCCCTAAGCACGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8198 | CAGCCGAAGATGGGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8199 | ACACCGGAGGCCATAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8200 | CGTTAGACAGCTTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8201 | TCTTCGGTCTACTCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8202 | CGTCAGGGTCACAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8203 | GAGGTGAGTCTCCATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8204 | CGCCAAGGTTCAGACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8205 | ACATACGTCTTGAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8206 | CAGCCGAAGAGAGCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8207 | AATCCAGTCAAGAAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8208 | TGTATTCGTACCGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8209 | ACGCAGCGTGTGGCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8210 | AGAGCGACATCTCGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8211 | AACTGGTAGGACCACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8212 | CGGACTGAGTAATCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8213 | GGCGTGTCATAGAAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8214 | GATCGTACATGTCGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8215 | CGAGCACAGCGCCTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8216 | GGTGAAGTCTGTGCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8217 | CAGAATCTCGTATCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8218 | GTTAAGCAGCTACCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8219 | GGCCGATTCTGAGTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8220 | CTAGTGACAGTTAACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8221 | CGAGAAGGTGTGGCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8222 | GCCTCTAGTTCACGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8223 | ACGCCGACATGCTAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8224 | TGCCAAAGTCATGCCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8225 | GACACGCCACACGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8226 | GTAACGTCATCACGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8227 | CACATAGCAGGCTGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8228 | GTCCTCAGTCAGAAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8229 | AGGGTGAGTCAATGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8230 | ACCCACTCAAAGTCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8231 | CACACTCAGATAGGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8232 | GTGCAGCCATTTGCCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8233 | TAGGCATCAGCCTTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8234 | GGTATTGAGTTCGCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8235 | GAATGAAGTCTCCATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8236 | TTAGGCATCCCGGATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8237 | GGGAATGAGTACATGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8238 | GGGAATGTCCATGAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8239 | CCCTCCTGTCAGATAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8240 | TTCGAAGAGGAGCGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8241 | CATGGCGAGCTAGTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8242 | CTCTGGTGTAATCGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8243 | CTCATTAGTGTGACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8244 | GTCACAACACGGTAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8245 | GGAACTTTCTCTTATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8246 | ATTTCTGGTCCATGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8247 | TGGGAAGGTTCCCGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8248 | TGCACCTCATTGGGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8249 | ATTACTCAGTATCGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8250 | CTCGTACAGTGTCCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8251 | CGTCTACAGGGAGTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8252 | CGCCAAGAGCGTGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8253 | TATCAGGAGACTAGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8254 | TACAGTGAGGCCCGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8255 | AACTCAGGTAAGAGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8256 | GATCTAGTCTAACCGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8257 | GATGCTAGTATCAGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8258 | GATGAAAGTAACGTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8259 | CTGATAGTCCGAAGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8260 | ACTTTCAGTTTCGCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8261 | TTGAACGTCAAGATCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8262 | CTAACTTGTCGAACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8263 | GTTCGGGAGTAGGCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8264 | CTGGTCTAGATGTGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8265 | GAAGCAGCAGCCTATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8266 | CATTCGCTCTTCGAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8267 | TCAATCTAGAATTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8268 | GACTGCGTCAGCTCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8269 | ACAGCTATCAAACAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8270 | CCCAGTTCACGGTAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8271 | CAGTAACAGACTAAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8272 | TGTATTCAGTGAAGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8273 | AGCATACAGGCCATAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8274 | TAGACCACAACTGCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8275 | GATGAGGAGTTGAGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8276 | CTGCCTATCCTCATTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8277 | GCAGTTAGTGTCGCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8278 | GCGACCAGTTTGTTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8279 | CACCTTGAGATCCTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8280 | GTACTCCGTCCGAACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8281 | CGTCCATTCAGCATGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8282 | CCGGTAGAGTCTCCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8283 | CGGAGTCTCCTCATTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8284 | AGCTTGATCTGAAAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8285 | GAGTCCGAGGAGTAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8286 | GGGAGATTCCGAAGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8287 | CATGACAGTCTTCTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8288 | GTTCGGGTCAGCTCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8289 | GCGAGAAGTGTGACCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8290 | CCTAAAGCAATGGATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8291 | CTAGCCTGTAAACACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8292 | AAAGATGTCCCTTGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8293 | GAGGTGATCCTATGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8294 | TCGTAGACAAAGTGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8295 | TTAACTCGTAGCGTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8296 | ACACCCTGTACAGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8297 | ATCATGGTCAGCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8298 | ACTTTCAGTTATCCGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8299 | GGGCATCTCCCAAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8300 | GTTAAGCGTGTAAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8301 | AAATGCCTCTACTATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8302 | TGAGGGAAGAAACCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8303 | CTACCCAGTTCGGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8304 | GCTCCTAAGTAATCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8305 | AATCCAGCAGTATCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8306 | AGCTTGATCAAACCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8307 | GAGGTGATCCAGAGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8308 | GCTCCTAGTTAGAACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8309 | TATCTCAGTCCGCTGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8310 | TACGGTAGTCTCCCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8311 | GGAGCAAGTCGTGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8312 | TGGGCGTGTGCCTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8313 | GTGTGCGGTTATCGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8314 | GACCTGGCAATCTACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8315 | AGAGTGGCAGATTGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8316 | TAGAGCTGTCCCTACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8317 | TTGCCGTTCCGCGCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8318 | CACACAAGTCCGCTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8319 | TGTGGTATCGGATGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8320 | AGCTCCTCATATACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8321 | TCTCATAAGCTAACAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8322 | GACTAACAGACCACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8323 | AAATGCCCAATCCAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8324 | CGTCTACGTTGGGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8325 | AGAGTGGAGACAGACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8326 | AAAGATGGTACTCGCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8327 | CTAAGACAGTTGAGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8328 | TCTGAGAGTTTCCACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8329 | AGTTGGTCACATAACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8330 | GAAGCAGAGGCAATTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8331 | AAGTCTGTCATTCACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8332 | CTCGGAGGTGGTCTCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8333 | GCTGGGTAGAGTCGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8334 | GAAATGATCTCGCTTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8335 | ATAAGAGAGAACTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8336 | AAGACCTGTCGCTTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8337 | AACTCCCTCTAACTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8338 | GAATGAAGTGAAGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8339 | CGCCAAGGTGTGCGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8340 | GTACTCCGTTTACTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8341 | AAGGCAGAGAAGGTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8342 | CGGAGCTGTACAGCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8343 | CTAGAGTAGGGTGTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8344 | AACTTTCAGCTGTCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8345 | CAGAATCAGGTTCCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8346 | GTCACGGGTTGTTTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8347 | GCGCCAAGTTCACGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8348 | CACATAGTCACCCTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8349 | GCTGCGATCTACCAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8350 | TGAGGGACAACACCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8351 | AGAGTGGCATCTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8352 | GCTGCGACATTTGCCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8353 | CTCAGAAAGCCGCCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8354 | GACTACAAGTGATCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8355 | CCTATTAGTACATGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8356 | CTCGAAAGTCTCCACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8357 | GGTGAAGCAAGCCATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8358 | CATCGAACACCCATGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8359 | TAGGCATCATGTAAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8360 | CTCGAAATCGGCCGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8361 | CCGGGATGTACATCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8362 | CTTAGGAAGCACAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8363 | ACTTGTTAGATGCGAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8364 | TTTGTCAGTGAGTGAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8365 | GGGTTGCCAGTGGAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8366 | GACTGCGAGGGTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8367 | TATCTCAAGCTTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8368 | AAACGGGGTCTCCATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8369 | CGAGAAGAGTGAACGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8370 | CCACCTATCGGTGTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8371 | AGGCCACAGCAGGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8372 | GTCACGGAGGGATACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8373 | CAAGGCCTCGGCGCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8374 | CCGTGGATCTTTAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8375 | TCAGCTCGTTCACGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8376 | CAGCCGACATTTCACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8377 | GATGAGGAGGGTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8378 | GGAATAAGTCTCCACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8379 | TTCTCAAGTGATGCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8380 | CCTAGCTGTTTAGCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8381 | TAGTGGTCATACTCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8382 | GTATTCTGTCCAAGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8383 | GGCCGATGTCGTGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8384 | CAGGTGCAGGGAACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8385 | CCGTGGAAGTACGTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8386 | AGATCTGTCTTGAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8387 | ATCACGATCGTCTGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8388 | TCAGGATGTGGAAAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8389 | CACAGGCTCCTGCAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8390 | TTGGCAACAGCTCGAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8391 | ATTATCCTCCAGAAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8392 | GTATTCTCAGTCAGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8393 | AGTGTCAGTACCTACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8394 | CCCAATCTCTTTACGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8395 | CTAATGGCATGTCTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8396 | TACACGAAGGCAGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8397 | GACGGCTCAATACGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8398 | CACCTTGCAATAGCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8399 | ACATACGCATGGTTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8400 | CCGTGGAAGGATGCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8401 | AGTGGGAGTGACGGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8402 | CGTAGCGAGGCCCTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8403 | ATAAGAGGTAGCTTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8404 | AAAGTAGGTGTTCTTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8405 | CCACCTAGTTCCACTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8406 | GTACTTTTCTGCTGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8407 | TGAGAGGGTGAGGGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8408 | CACACAAAGAGTCTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8409 | GTTTCTAGTCTTTCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8410 | CATATTCCAAGTTCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8411 | ACTTTCAGTCGCTTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8412 | TTTGTCATCAATACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8413 | CTGCTGTAGTGATCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8414 | AAGGCAGTCAAGAAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8415 | GCATGTATCTAACTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8416 | TTTACTGAGTGGAGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8417 | CTACACCCACTTGGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8418 | AGCATACAGGCGATAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8419 | TCAGCAATCACATACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8420 | AACTCAGGTCCTGCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8421 | AAACCTGTCTACTATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8422 | TGAGGGAGTTGATTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8423 | AAAGATGCATGAACCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8424 | GTACTTTCATGCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8425 | GGTGCGTGTTGATTCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8426 | CCACCTAAGAGGTTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8427 | GTCGTAACACATGGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8428 | TACGGGCGTCCATGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8429 | CATATGGGTCTCACCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8430 | ATGAGGGTCCGCTGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8431 | GACAGAGGTCACACGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8432 | AACCATGAGGCACATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8433 | AGTGAGGGTAAACACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8434 | CTTAGGAAGTGCTGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8435 | TCCCGATAGCAGCCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8436 | ATCATCTTCCTAAGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8437 | TCTGGAACAAACCTAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8438 | CTTACCGGTATCAGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8439 | GACGTGCCAGGACGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8440 | GTAGTCAAGCGATTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8441 | CAGAGAGGTCTGCCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8442 | CGGAGTCTCAAACCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8443 | AGTGTCATCATGTCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8444 | AAATGCCAGGATCGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8445 | TCTTCGGTCTTCGGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8446 | ACTGAACCAAGCCTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8447 | CCACGGATCACTTATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8448 | TTCTTAGTCGACAGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8449 | CTGAAGTGTTCCATGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8450 | AAGGTTCTCCAACCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8451 | ATGAGGGAGGCTAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8452 | TCCACACAGGGTGTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8453 | GGATTACTCCTCAATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8454 | GCGCGATGTGGGTCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8455 | GTTCGGGGTCATGCCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8456 | ACGTCAACATCCGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8457 | GGAAAGCCATTATCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8458 | TGAGCATCAATAGCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8459 | GCAGTTAGTCTAGCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8460 | TTGAACGGTAAACGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8461 | TAAGTGCGTGCAACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8462 | GACGTTAGTGTCTGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8463 | ACGCCGAGTTAGATGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8464 | TTGAACGCACAGACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8465 | CGTCTACCACATCCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8466 | CGCTGGACAAGGGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8467 | CGTAGCGAGACAAGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8468 | AGGGATGAGCCGTCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8469 | CAGCATACAGGAATCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8470 | GGATTACCATACCATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8471 | GGATGTTAGAGTCGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8472 | GGGATGATCAAACGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8473 | GACGCGTTCGTCGTTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8474 | AGGGATGTCTGTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8475 | AAGCCGCTCAGTGCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8476 | GGGTCTGAGGTGGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8477 | CTCAGAAGTTAGGGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8478 | GTAGTCAAGGTGCTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8479 | TGAGGGAGTGTGTGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8480 | AAAGTAGAGATGTGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8481 | GACGTTACACAGAGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8482 | TGAGCATTCGGCCGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8483 | ATCACGAGTTGGACCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8484 | CCGTGGATCCGCTGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8485 | TTAGGCAGTGACGGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8486 | CGGACTGAGATCTGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8487 | TCTGAGATCGAGAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8488 | TTGGAACGTCATATGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8489 | GTCATTTCACGAAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8490 | TCGGTAAAGATATGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8491 | TGGGCGTCAATAGCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8492 | GGAGCAATCAACCATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8493 | AACTGGTGTAAGCACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8494 | GCCTCTATCGGCGCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8495 | CGCTATCGTCTTGCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8496 | CGGACTGTCGCTGATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8497 | GATTCAGAGACTTTCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8498 | GGGATGATCTTTAGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8499 | GAATAAGAGCACCGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8500 | CTGGTCTGTTAAGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8501 | ACGATGTCATCGGTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8502 | GACGGCTTCGCTAGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8503 | TTAGTTCCAAAGCGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8504 | CGAACATTCCTCAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8505 | CGCTTCATCAGGCCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8506 | GACTGCGAGTCCGTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8507 | TGCCAAATCTTCATGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8508 | GCTTCCAAGGTGTTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8509 | TACAGTGGTGCGATAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8510 | CTACATTGTTGTCGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8511 | TACAGTGAGTACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8512 | CACTCCATCGCTAGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8513 | CAGGTGCCAAACTGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8514 | GGCTCGAGTGTCGCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8515 | GTCACAAAGTGTGAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8516 | TGCCAAATCTCGATGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8517 | GCTGCTTTCCGCATAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8518 | AACTCTTTCTGAAAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8519 | CAACCTCCATAGACTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8520 | ACATGGTGTTCGTGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8521 | ATCCACCAGCGTCAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8522 | TTAGGCATCCTTAATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8523 | GATGAAAAGGCTCATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8524 | GATGCTACAATAGCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8525 | ACCCACTCATTACCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8526 | CTCGTCAGTGCAGACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8527 | GGACATTGTCAAAGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8528 | GACCAATAGACAAGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8529 | TTTGCGCTCGCGTTTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8530 | CATGACACATACCATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8531 | TCTCTAACATGTCTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8532 | TTCCCAGGTCTTGCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8533 | CATATGGCAGCTTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8534 | GGACAGAGTGATGTGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8535 | GGACAGACAGCCACCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8536 | ACGGGCTGTTGCGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8537 | GCATGATTCAAGAAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8538 | TGGACGCAGAAGGTGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8539 | GGGAGATCATGTCGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8540 | CGCGTTTCAGCTTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8541 | GAGTCCGTCAACACCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8542 | TCACGAAGTATATGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8543 | CTCGGGAGTAAGAGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8544 | CGATTGACACGAAGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8545 | GGGCACTTCAGCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8546 | GTCTCGTTCGTGGACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8547 | AAACCTGAGATCCCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8548 | TGGCTGGAGCGACGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8549 | AACTCCCGTAACGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8550 | AACGTTGTCATCGGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8551 | TCAGCAAAGCTCCTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8552 | GACAGAGGTAGCTAAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8553 | GGCAATTCAAAGAATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8554 | GACGCGTTCATGCAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8555 | CTGTGCTCAGCTGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8556 | GTCAAGTAGGCATGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8557 | TCCACACCATCACAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8558 | GTATCTTCAATAGCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8559 | AAATGCCGTAGCGATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8560 | TCGTAGAGTGAGCGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8561 | TCACAAGGTTATCCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8562 | GGGCATCTCGAGAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8563 | AGTGAGGTCCTTGGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8564 | AGCGGTCGTCCTAGCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8565 | GGATGTTCAGTTCATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8566 | CGTTGGGTCTATCGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8567 | AACCGCGCAAGCCGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8568 | CACCTTGGTGTGCCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8569 | GTGCATATCTCGCTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8570 | AGATTGCTCGAATGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8571 | TGGTTCCTCAGTTCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8572 | CAGTCCTCATATACGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8573 | TGACAACGTCTAGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8574 | ATTACTCCACGAGGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8575 | GCGACCACACATCCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8576 | ACGCCAGAGAGTCGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8577 | CAAGAAAAGCGAAGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8578 | AAAGCAAAGTTGTCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8579 | TCACAAGTCTCCAGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8580 | CGGAGCTGTGGACGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8581 | GTCGTAATCACCAGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8582 | TCTGGAACAGGCTGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8583 | TCGGTAATCCGTTGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8584 | GTCGTAAGTTACGCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8585 | TAAGTGCCAGGGATTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8586 | CCGGGATCATTATCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8587 | TGCGTGGGTCCAAGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8588 | ACGCCAGAGGCTAGAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8589 | GTATTCTGTCCAACTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8590 | TCGTAGATCCGCTGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8591 | GGCCGATCAAACGTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8592 | ACCCACTGTCATACTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8593 | TCAGATGTCGGATGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8594 | TCTCTAAGTAGTAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8595 | CAGTAACAGCAGCGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8596 | CGCCAAGTCGTCACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8597 | GTAGGCCTCCTCATTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8598 | CTAATGGGTTCCAACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8599 | CAGATCATCGGAAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8600 | TACTTGTGTAGGCTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8601 | GCTCCTATCCCTAACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8602 | CTGATAGAGGGATACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8603 | AGTGGGAAGCTCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8604 | TGGCGCACAATAAGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8605 | CTACGTCTCACTCTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8606 | AAGGCAGGTGCGGTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8607 | CTCATTAAGAGCAATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8608 | GTATTCTTCGGAAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8609 | GTTCATTGTTGGTTTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8610 | GTATTCTGTCAGTGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8611 | GTTTCTATCGCCCTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8612 | CTTGGCTGTGACTACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8613 | CCGGGATAGGGCTCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8614 | CTAGCCTGTTGTGGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8615 | GCCTCTACACTTCTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8616 | TGGCGCATCAGCTCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8617 | TACACGAAGTTGAGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8618 | CGCGTTTCATTCTCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8619 | GGACGTCGTCCATCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8620 | CGAATGTTCGTCACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8621 | AAAGTAGTCGGACAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8622 | CACAGGCCATGCCTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8623 | AACTCTTCATCGATTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8624 | AAACGGGCATACTCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8625 | ACATCAGTCTTGACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8626 | ATCATGGAGACAGAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8627 | TGTCCCATCGGCCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8628 | CGAGCACCAGATTGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8629 | TGACTTTGTACATCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8630 | TTCGAAGTCGCTTGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8631 | GGTATTGAGCTGCCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8632 | CATTCGCAGTTGAGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8633 | GTAGGCCAGCCCTAAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8634 | GGGCACTAGACACTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8635 | CAGCTGGTCTATCCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8636 | CATCAGACACCCATGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8637 | GTGTGCGGTCGAAAGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8638 | TACTTACAGGATTCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8639 | GACTAACGTCCGCTGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8640 | GAAATGATCACTCCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8641 | CTAATGGCAGCCAGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8642 | AAACCTGGTGTTTGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8643 | GTACTCCAGTACGATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8644 | AAGGAGCCAGATCGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8645 | GGCTCGAAGGTGCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8646 | CGACCTTCAAGCTGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8647 | TTTACTGAGTCATCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8648 | TGATTTCTCCTAAGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8649 | CACTCCAAGGAATTAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8650 | ACGTCAATCTAACTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8651 | ACGCAGCAGCTAAGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8652 | ACACCAAGTCCAGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8653 | GACGCGTTCCACGAAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8654 | AAGCCGCAGAAACGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8655 | GCATACAAGGCCATAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8656 | ATCATGGTCCGGCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8657 | CATTCGCCAGCAGTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8658 | GAATAAGTCCAGGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8659 | CAAGGCCGTAAACACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8660 | CCGGGATAGCACCGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8661 | CTTTGCGCATGGTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8662 | GCAGCCAAGAGGACGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8663 | TGTTCCGTCACTCTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8664 | TAAGCGTAGAAACCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8665 | TTTGTCAAGAAACCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8666 | TCGGGACGTTACCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8667 | TCCACACGTGCGATAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8668 | CTGATCCAGCTGTCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8669 | TTGACTTTCTGCTTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8670 | TCAGCTCTCCGGCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8671 | ACGATGTAGATGGGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8672 | GCCAAATAGCAGACTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8673 | AGCGGTCCAGCTATTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8674 | TTCTACATCGCAGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8675 | GCAATCAAGCACCGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8676 | CATGCCTCAGACAAAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8677 | GTTACAGAGTGTACGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8678 | CTGATAGGTCAAAGCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8679 | CACAGGCTCATAACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8680 | GACGCGTTCCGGGTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8681 | CCATTCGCAAGCCGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8682 | AGGTCATTCGCCAGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8683 | CCGGGATGTTAAAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8684 | GGACAGAGTCCGTCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8685 | TGCTGCTCATGGTCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8686 | GAACGGAGTCTGGAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8687 | CACAGTACAGGTGGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8688 | GGCCGATGTACCGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8689 | CTGATCCCAAACAACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8690 | TTATGCTGTGCAACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8691 | AGTTGGTAGGTGTTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8692 | GTTCGGGGTGGACGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8693 | GATGAAATCACGAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8694 | CCGTACTGTGTCCTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8695 | TGTGGTAAGGTGGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8696 | CATCCACCACAAGACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8697 | GCATGATTCGTTTGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8698 | TTAGGCAAGTGCAAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8699 | CCAGCGACAGTTCATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8700 | TACGGATTCGTATCAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8701 | AGCCTAATCCGAGCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8702 | ATAACGCGTAGAAGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8703 | CACAGGCAGGGATACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8704 | CTGTGCTTCATATCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8705 | GAACATCCATGTAGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8706 | GACAGAGTCGCCTGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8707 | TTATGCTCACATCCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8708 | GGGATGACAGACTCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8709 | AGCAGCCTCGCATGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8710 | GTGCGGTTCTATCCCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8711 | ACACTGATCGCGATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8712 | CGATGGCGTAGATTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8713 | GGAATAAAGAGTCTGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8714 | AAAGCAAAGGTCATCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8715 | TACTTGTAGGAGTCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8716 | GTGCATAGTCTTCGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8717 | ACTGATGTCTGCGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8718 | ATTCTACAGTGAACGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8719 | GTCCTCATCGCTAGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8720 | GCATGCGGTCTCCATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8721 | TGTATTCTCTATCCCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8722 | GAATGAAGTTCACGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8723 | TCTCATATCGTACCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8724 | CTCGTACTCAGCTTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8725 | AGAGCTTCAGCTCGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8726 | AACTCAGTCAAAGTAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8727 | TCCACACCATCGTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8728 | TGCCCTACAACGATGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8729 | CAGCTAATCACCCGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8730 | CTTAACTTCTCCGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8731 | TTTATGCAGGGAAACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8732 | GTAACGTGTAAATACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8733 | TCTATTGGTAACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8734 | CTCGTCATCCAGTAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8735 | TGGCTGGAGCTGTCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8736 | TACACGAAGTGCGTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8737 | TGCGTGGTCTATCGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8738 | CTAGCCTAGTCCATAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8739 | TGACAACAGGGTCTCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8740 | CACTCCATCTCCAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8741 | GACTACAGTCTAGCCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8742 | CAACTAGGTGATAAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8743 | ACTTTCATCGATGAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8744 | TCTCATACACGACTCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8745 | ACGCCAGGTCATCGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8746 | TTCCCAGAGGAGTAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8747 | ACTGAACAGACAGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8748 | CCACCTAAGGGAGTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8749 | ATCTACTTCACTCTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8750 | TGGGCGTAGTGAAGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8751 | CACAAACAGATGCCAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8752 | CATATTCAGGTGCACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8753 | AAGGTTCGTTTGGGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8754 | CAGCTAACAGAGTGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8755 | GGTATTGCAGCTGTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8756 | TCGCGTTAGTTACCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8757 | TCAGCAAGTAATTGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8758 | GCCTCTAAGACTGGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8759 | GCATGCGAGATATACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8760 | CTGCTGTTCCCTAATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8761 | CATTCGCTCTGCAAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8762 | GGGCATCAGAGCCTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8763 | GTTTCTAGTTAGATGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8764 | CTACGTCCATTCACTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8765 | TAGTGGTCACAGAGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8766 | GCATGCGAGCGATCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8767 | CCCATACAGGGCACTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8768 | GCTCCTAAGCGTGAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8769 | ACATCAGTCTGTCAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8770 | CGGAGCTGTACGCACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8771 | CCGTACTAGCGTAATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8772 | CTAGCCTCATCACCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8773 | GTCACAAAGCGAAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8774 | GGCTCGAAGCGCTCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8775 | AATCGGTCATAAAGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8776 | GACGCGTGTCCGAAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8777 | TTGAACGTCAAAGACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8778 | CGACTTCGTGTGACCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8779 | ATGAGGGGTTCCGTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8780 | ACACTGAGTCCAGTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8781 | GAACGGAGTAACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8782 | CAGATCAGTTCCGGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8783 | CCTTCCCGTAGGAGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8784 | GAACCTAGTAGGAGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8785 | CTTGGCTCAGCCTTGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8786 | CGTGAGCCATTCCTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8787 | TCAGGTATCCGTCATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8788 | TGCCAAAAGCATGGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8789 | TCACAAGTCTCCAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8790 | ACCAGTAGTACTCAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8791 | TGCTACCGTCAATGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8792 | ACATACGGTCCGAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8793 | TGGACGCCAAGTACCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8794 | CGCTTCAAGCACCGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8795 | GAATGAAAGCCAGGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8796 | ATCCACCTCAAAGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8797 | AAATGCCTCCTATTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8798 | CGCCAAGGTCATATGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8799 | CTTTGCGCACAACTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8800 | GATTCAGTCGCTAGCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8801 | TACACGAAGGGCTCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8802 | CTCGAGGTCTGTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8803 | TTATGCTGTAAGGGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8804 | GGTATTGTCATTTGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8805 | GTGCTTCGTGTGTGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8806 | CCACTACTCTGCTGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8807 | TTGCCGTGTTCCACGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8808 | TTAGGACGTGCTCTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8809 | CTCGTACCACGACTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8810 | ACAGCTAGTCAAAGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8811 | CTACATTCAACTGCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8812 | TCTCATATCATCGATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8813 | TAGGCATTCAACCATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8814 | ATTGGTGTCACCTCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8815 | CAACTAGGTCTCTTTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8816 | CCCAGTTAGCGTTCCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8817 | GGACAAGGTAGGAGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8818 | CGCTATCCAAGCCCAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8819 | ATCGAGTCAATCACAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8820 | GTCTTCGCAAACCTAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8821 | TTGACTTAGAGTACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8822 | TGAGGGATCCAAGTAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8823 | GAGGTGAAGTGGCACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8824 | TGGTTAGTCTCAAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8825 | CTACACCCATGCAATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8826 | ACAGCTAGTACGAAAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8827 | GTTACAGCACGGTGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8828 | CGGAGCTTCGAATGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8829 | CAGCCGATCTTCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8830 | GCAAACTAGCCGCCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8831 | CAACCAACATGGTCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8832 | CTTAACTCAACTGCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8833 | TTTCCTCTCCTCAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8834 | GTGCATAGTTTCGCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8835 | TCTTTCCTCAGAGCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8836 | GCATACATCTCTGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8837 | CAACCTCGTGAGGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8838 | ATTATCCCAACTGGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8839 | CCATTCGAGTGGACGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8840 | ATGGGAGCAAACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8841 | CCATTCGTCTACTATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8842 | ATCTACTAGGATGGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8843 | AGCAGCCGTTGGAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8844 | ATAAGAGCAACTGCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8845 | TGGTTAGCACAACTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8846 | GATTCAGGTCACCTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8847 | GGCTGGTTCTTGTTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8848 | TGATTTCTCTGCCAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8849 | CGGGTCATCCTAGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8850 | AGCTCCTGTCCGTCAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8851 | GATCGCGCAGTTAACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8852 | TTCTACAAGATCACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8853 | CAGGTGCGTCAGTGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8854 | CTCTGGTGTCTCTTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8855 | TAAACCGGTTCCACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8856 | GGGATGAAGTCCCACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8857 | GCCTCTACAAGTTCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8858 | TTATGCTAGTCATCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8859 | TATTACCGTCGCGGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8860 | CTGATAGCAGCTTCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8861 | CATGACAAGGCGTACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8862 | TAGCCGGCACAGGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8863 | CGTCACTTCCCAACGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8864 | TGACTAGTCCGCATCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8865 | GACTGCGTCTTGAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8866 | CCATGTCGTTATCACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8867 | CCTTCGACAGGAATGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8868 | CTGATAGAGCCGATTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8869 | CATCAAGTCTTTAGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8870 | TCTCTAAAGGGTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8871 | AAGCCGCTCTTGTTTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8872 | AGATCTGTCTTCCTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8873 | AATCCAGCAATTCCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8874 | ACTTTCATCGTGGACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8875 | GGATGTTAGACGACGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8876 | TAAACCGAGAGTACCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8877 | CATCCACTCTGAGGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8878 | TTATGCTTCGTACGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8879 | GGACAAGGTACAAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8880 | TGTGGTAAGAAGATTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8881 | CCGGTAGTCCTATGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8882 | TTTGGTTCAATGACCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8883 | CACCAGGCATGGTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8884 | TTCGGTCCATCGATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8885 | CAGAGAGGTAGAGTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8886 | ACTTTCATCGCATGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8887 | GTACTCCAGGAGTTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8888 | ATGAGGGTCACCCTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8889 | CGTTGGGAGCGTAATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8890 | GAATAAGCAGTATGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8891 | CGATGGCAGGCTCATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8892 | AGATTGCAGTGACTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8893 | AAGACCTTCGGAAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8894 | TTAACTCAGCGATGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8895 | CATATTCTCAGGTTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8896 | TTAGTTCAGTTACCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8897 | TCGAGGCCAGACGCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8898 | TGGCCAGTCGAACGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8899 | CCATGTCAGGTGCTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8900 | GGAGCAAGTGCGATAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8901 | CCCAGTTAGAGCCTAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8902 | GCGCAACTCGCATGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8903 | GTTCGGGGTGCCTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8904 | TTCGGTCTCACGCATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8905 | AAGACCTAGACGACGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8906 | CGCGTTTAGAGTACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8907 | TCTGAGACATGGATGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8908 | GTTCATTGTGTGGCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8909 | TCTATTGGTTACCAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8910 | GCAATCAAGCCCAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8911 | TGATTTCTCCAAACTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8912 | ATCTACTTCGTTTGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8913 | AAAGCAACAGCGTTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8914 | TACCTATTCCGGCACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8915 | CACACAAAGAGCTGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8916 | TACACGACAGGGTATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8917 | ACATACGTCAGAGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8918 | TTGGCAAGTGTCGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8919 | CTACATTGTACCCAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8920 | TACAGTGTCCTAGAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8921 | CCACGGAAGCGCTCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8922 | CCTATTATCTTGCCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8923 | CCGGGATAGCATGGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8924 | CCATGTCGTGCGGTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8925 | GCTGGGTTCCTACAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8926 | GGGTCTGAGCAGCGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8927 | GCGGGTTCAGTCTTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8928 | CACAAACGTCTACCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8929 | TCACGAAAGGCAGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8930 | TGAGGGAGTTATGTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8931 | GCAAACTAGATCACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8932 | AACTGGTAGCTTCGCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8933 | AGCTTGAGTCGCATAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8934 | GTTACAGAGAACAATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8935 | ACTGTCCCAAGAGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8936 | GTAGTCAGTCATGCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8937 | GGCAATTGTTCCGTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8938 | AGAGTGGGTTTGGGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8939 | ATGAGGGTCCACGAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8940 | CCTATTAAGCAATATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8941 | AAACGGGCACAGATTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8942 | TCCACACCACTGTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8943 | TAGCCGGCAGCGTTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8944 | AACTCTTTCTAACGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8945 | ATTGGTGAGATATGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8946 | GGGACCTCATAGTAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8947 | AGCAGCCTCGTCCAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8948 | GCTTCCAAGGCAAAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8949 | ATAGACCAGAGAGCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8950 | CTGCCTAAGAGAACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8951 | ATGCGATAGCGTCTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8952 | CTTAACTTCACCCTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8953 | CAGAGAGCATTAACCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8954 | TTCCCAGAGACTGTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8955 | CCTACACCACAAGCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8956 | CTGCTGTGTTCAACCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8957 | CTAGAGTTCTCACATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8958 | TAAGCGTAGTTAGGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8959 | CGTGTAAGTTGTGGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8960 | CAAGAAATCTACCTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8961 | AGAGCTTAGGCTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8962 | CAAGAAAGTCCAACTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8963 | GTGCATACACGGTTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8964 | AACTCCCTCCGGCACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8965 | GTCGTAACAAGCGAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8966 | AGACGTTCAATAGCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8967 | CCACGGAGTAGCTTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8968 | ATGGGAGGTCATCCCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8969 | AAACGGGGTTTGACTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8970 | TCAGGTATCGCGTTTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8971 | CTACGTCCATGGTTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8972 | TACTTGTAGGGCTTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8973 | AACCATGCAGCTTAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8974 | GCGACCATCGGCCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8975 | TTGGCAATCCCTGACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8976 | GTAGTCAGTCCAGTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8977 | CACACTCCAAGTACCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8978 | AAAGCAATCTATGTGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8979 | TTATGCTGTAATCACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8980 | CTCAGAATCGGACAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8981 | CAGCGACGTTAAGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8982 | GGAATAAAGGGTGTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8983 | CATGCCTCAGACACTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8984 | AGGGATGGTGATGATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8985 | AACTCAGTCTTCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8986 | CCTTTCTGTATCACCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8987 | CTTACCGCATTACCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8988 | GTTTCTACAAGTCTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8989 | GAGTCCGTCTGGGCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8990 | TGGGAAGCACGGTGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8991 | TTAGGCATCTTTACGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8992 | AGGCCACTCGAATGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8993 | TACCTATCATCAGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8994 | TGGGCGTCACGAAGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8995 | GGATTACAGACTACAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8996 | AAGACCTTCAACGAAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8997 | CTAATGGGTGTAACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 8998 | TGCGCAGTCACTATTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 8999 | ACTGATGTCTTGGGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9000 | GATCAGTAGGATGGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9001 | GCCTCTAAGGATTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9002 | ATCTACTGTAGCTAAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9003 | GGGATGAAGTTACGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9004 | CATTATCAGCGTCTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9005 | CTCTAATTCTGGTATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9006 | ACTGAACAGGAGCGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9007 | TTAGTTCGTACCATCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9008 | AACACGTAGGTCATCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9009 | CGCTTCAAGAACAACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9010 | TGTGTTTCAAGCGTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9011 | GCACATACATACCATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9012 | GGGCACTTCGTATCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9013 | TTGACTTTCAATCACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9014 | TTGCCGTAGTGGAGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9015 | AGCTCTCAGGCTATCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9016 | ACAGCCGTCCGAAGAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9017 | ATCATGGTCAGCCTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9018 | ACACTGAAGGTAGCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9019 | ACGCAGCAGTGGGCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9020 | AATCCAGGTCATTAGC | ERX6700458 | ERP132587 | testis | Late_Round_spermatids | nan | nan | nan | CL:4030036 | early spermatid | missing child term | SN224 | nan | |
| 9021 | AACTTTCCAGATGGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9022 | GTAACGTTCAGTCAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9023 | AGTCTTTGTAAAGGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9024 | TATCAGGTCTGTTGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9025 | CAAGTTGGTATTCTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9026 | GGCCGATCATAACCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9027 | GGGACCTAGAATAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9028 | CATATGGGTAACGACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9029 | GTCAAGTTCCGATATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9030 | CCCATACAGAAACGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9031 | GAAACTCCACCTCGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9032 | CCTTCGACAGTGAGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9033 | CTGAAACCAACAACCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9034 | AGCGGTCAGATGCCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9035 | ACGGGTCCAGGGAGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9036 | TTTCCTCCACTCAGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9037 | CATGCCTAGAAGGTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9038 | CTGAAGTGTTCGGCAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9039 | GGGACCTTCTTACCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9040 | GGGAGATGTCACTTCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9041 | TCTATTGAGATCCGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9042 | TTCTCAATCACCTTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9043 | CGTTAGAGTGTCGCTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9044 | CAGCTGGGTGCGAAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9045 | GAGGTGAAGTTCGATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9046 | CTCCTAGGTTTAGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9047 | GACGGCTAGATAGGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9048 | TGGACGCTCCAAACTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9049 | ACTGCTCGTCCATGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9050 | TCTCTAACACCTCGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9051 | GCATGCGTCACATACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9052 | TTGAACGGTCTCTTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9053 | TCTTCGGGTCTTGATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9054 | CAACCTCCACTATCTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9055 | CATTCGCAGTGGTCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9056 | GTAACTGTCCAGAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9057 | TGCGTGGCACTGAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9058 | TACTCGCTCTGAGGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9059 | TTCGAAGTCATCTGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9060 | AGTGTCAAGTACCGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9061 | TGTGTTTAGTACGATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9062 | AGGGAGTTCTTGCATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9063 | CTGTGCTTCAATCTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9064 | CTCGTACAGCGCTTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9065 | GCTTGAACAAGCCTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9066 | AGTGAGGTCTACTCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9067 | CATATGGCAGACACTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9068 | ATAGACCCAGATCTGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9069 | CGAATGTTCAGCAACT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9070 | GTTCTCGGTCCAAGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9071 | TAGTGGTTCCCTTGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9072 | CCTTTCTCAAAGGAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9073 | GCGCAACGTCAGAATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9074 | ACGGGCTAGATCCCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9075 | CAGCGACGTATCGCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9076 | CGTGAGCTCCCTAATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9077 | CGGAGTCGTAATAGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9078 | CATGACACACATGTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9079 | CCTTCCCGTGCCTGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9080 | CCCATACAGCAGGTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9081 | CAGAATCAGGATGTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9082 | CATGACAGTTCGGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9083 | AAGCCGCTCTCGATGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9084 | ACCTTTAGTATAGGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9085 | GTTCTCGAGAGGTAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9086 | AACTTTCGTAAGTGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9087 | CGTAGCGCAGGCGATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9088 | CCTACCAGTAAAGGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9089 | GGGTCTGGTGGACGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9090 | GCACTCTAGACAGACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9091 | GAAACTCGTGTGGTTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9092 | GCTTCCAAGCTAACTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9093 | GGATTACCAACTGGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9094 | AAAGCAATCTGCAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9095 | CAGTCCTGTTATCCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9096 | AGTGAGGAGCTAGGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9097 | ACCGTAAAGGTGCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9098 | ACGGGTCGTCCGCTGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9099 | GTCTTCGAGCGATTCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9100 | CAGCGACAGAAACGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9101 | AGCGGTCCAATAGCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9102 | TTAGTTCAGTGTTAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9103 | TTTATGCCAGACGCTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9104 | GATCGATTCAATCACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9105 | ACGCAGCAGCCTCGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9106 | CTCTGGTCATTCGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9107 | TTCTCAAGTTTCCACC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9108 | CTCGGGATCATAAAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9109 | ATCGAGTTCACCCTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9110 | ACAGCCGTCCGCATAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9111 | CCGTGGATCAGCTCTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9112 | CACACAAGTTCAACCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9113 | GGAACTTCAGCTGCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9114 | ACAGCCGTCGAGAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9115 | GTTAAGCTCCTAGGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9116 | CAGAATCGTACGCTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9117 | GCGACCAGTCAACATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9118 | AAATGCCTCCACGACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9119 | ACATACGAGTGTGGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9120 | GCTTGAAGTGTAAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9121 | ACACCCTCAGGCGATA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9122 | AAACGGGAGGATGCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9123 | GTGAAGGAGGAATTAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9124 | TGCTACCCATGGTCTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9125 | GAACCTACAAGCCATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9126 | CACTCCATCTACTTAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9127 | GGGAATGGTATAGGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9128 | GGATGTTAGGCAGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9129 | AGCGTATGTCATATGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9130 | ACTGCTCTCCTGCAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9131 | TAGCCGGCATGCTAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9132 | CCATTCGAGCCCAACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9133 | AAGGCAGGTTACGTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9134 | GGCTCGATCGAGCCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9135 | CTTAGGAGTAGCGTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9136 | GTCCTCAAGCTACCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9137 | GCACTCTTCAGTGTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9138 | GGACAGACAGTCGTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9139 | CCACCTAAGTGCTGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9140 | TGCCAAACAATCGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9141 | TGGTTCCCACTTCGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9142 | CAACCTCGTCCGTCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9143 | GCATGCGGTGAAAGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9144 | ACGATGTAGATCGATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9145 | CAAGTTGAGTGGCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9146 | CTGCTGTTCCAAGTAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9147 | ATTTCTGCAGGCTCAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9148 | CCGTGGAGTTGATTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9149 | GTCACAATCATATCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9150 | AGAGCTTTCTTGAGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9151 | GTCCTCAAGGCTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9152 | TCTATTGTCGAATGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9153 | CTTTGCGGTTACCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9154 | TGTGGTACAATGGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9155 | TTCTACACACCAACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9156 | CTACCCATCTGGCGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9157 | AAACGGGAGTTACCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9158 | ATCTGCCGTAGTGAAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9159 | CTGAAGTAGGCAGGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9160 | GCATACAGTGTTGAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9161 | TCGTACCCAGACGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9162 | CTGCGGACAAATCCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9163 | CGTTCTGTCGGCTTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9164 | CCGTACTGTGTAAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9165 | ACTTGTTGTTATGCGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9166 | GATGAGGCAGCTGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9167 | GTACGTAAGGATTCGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9168 | GCTGCTTCAAGGACAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9169 | AAGGTTCCAGCTGGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9170 | TCATTTGCAGGCGATA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9171 | GCGACCAGTCGAGATG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9172 | ACGATACGTTCTGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9173 | GGACAGAAGCTCCCAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9174 | GTACGTACAGACTCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9175 | GAATAAGCACCGGAAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9176 | CTTAGGAGTACAGTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9177 | CTAGTGATCGAATGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9178 | AACACGTTCTTGAGGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9179 | AACACGTCACAGGAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9180 | TCAACGAGTTCCGTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9181 | CGTAGGCTCATCGGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9182 | AGTAGTCGTCAATGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9183 | TCCCGATGTAACGTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9184 | CTACCCACAGCTGTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9185 | GTCGTAAGTATCTGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9186 | AAATGCCGTTATGCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9187 | TTCGAAGTCCTGCCAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9188 | GACACGCGTCTAAAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9189 | TTGAACGTCTTTACAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9190 | GTGCATACATGTTCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9191 | GACCAATTCTGGCGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9192 | TACAGTGTCTGTACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9193 | AAGGCAGTCGAACGGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9194 | TCTCTAAAGTTCCACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9195 | ACTGATGCAAACCCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9196 | CTGTTTACACGGCGTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9197 | ACCGTAAAGGAATCGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9198 | CTGATAGCAATGTAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9199 | CACACTCTCGACCAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9200 | TGAGGGAGTATGCTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9201 | CACACAAAGAGGACGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9202 | ACACCAATCAATAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9203 | ACACCCTCACTTAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9204 | ACCCACTAGGATGGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9205 | CCGTGGACAAATTGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9206 | TTCTTAGTCCACTGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9207 | CTCATTAGTCTGGTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9208 | ATCACGAGTGATAAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9209 | GGCAATTAGCGTCAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9210 | CGCCAAGAGCTCCTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9211 | GTTACAGTCGCATGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9212 | ATTGGACGTGCCTTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9213 | CACACTCGTGGTCCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9214 | GAATAAGCAAAGGTGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9215 | CTGCTGTAGGGTTCCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9216 | ACATGGTTCAACTCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9217 | GCTCTGTTCAGCGATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9218 | CTCGGGAAGTAGATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9219 | CAGCCGAAGACTAGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9220 | TCCACACAGCGAAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9221 | ACTGAGTTCGGCCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9222 | CTCGGGAGTTCGCTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9223 | GATGAAAGTCTCGTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9224 | CGGACACTCTCTAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9225 | GATCGATCAAAGGAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9226 | CGAGAAGAGATGTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9227 | ACTGAGTGTGTGACGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9228 | GAGCAGACAATGTAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9229 | GAACGGATCGAGCCCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9230 | CGCCAAGGTGCAACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9231 | CGATGGCAGACTTTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9232 | CAGCTAAAGCGAAGGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9233 | TAAGCGTCAGTCTTCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9234 | ATAGACCAGGAACTGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9235 | ACGGGTCAGGCTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9236 | GGCGTGTCAATGGAAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9237 | GGAACTTCAGCCTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9238 | CTAACTTTCGTACCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9239 | GCCAAATGTTCAACCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9240 | CTCGGAGTCAACACGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9241 | TGACAACCAAAGGAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9242 | AGCATACAGCTGAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9243 | GTGCTTCTCAGGCGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9244 | TGCGTGGCATTCTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9245 | TCGGTAAAGTCCATAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9246 | CGTCTACGTGCATCTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9247 | CGTGTAACAGCCAGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9248 | GTACTCCCATTACCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9249 | TGTGGTATCTCAAGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9250 | GTGCATACAGTTCATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9251 | TTCTCAAAGACCTAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9252 | GGACAGAGTTAAGACA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9253 | GAAACTCCACCATCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9254 | CGAGAAGGTAGGAGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9255 | CCTAAAGGTACCGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9256 | CTGCTGTGTACACCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9257 | AACTGGTAGCTATGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9258 | TCAGATGTCCGTACAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9259 | AGGCCACGTGCGAAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9260 | TAGACCACAGAGCCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9261 | TGGCTGGTCCAGATCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9262 | CCTTCGATCATACGGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9263 | CTGCCTACACGTGAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9264 | ACACCGGAGTGGAGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9265 | TCAGGATCAGATTGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9266 | AACCATGTCAGGCAAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9267 | GGCAATTCACAACGCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9268 | GATCAGTCAATCCAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9269 | ACAGCCGTCTAAGCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9270 | AACTCCCCACCAGGTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9271 | GTGCGGTAGAGGTACC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9272 | TAAGCGTAGAGCCCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9273 | ACAGCTATCAGGTTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9274 | GACTACACACATGTGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9275 | ATCTGCCAGGCTAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9276 | GAACATCGTGAAGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9277 | CACAAACAGAGCTTCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9278 | TCTATTGCATCCAACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9279 | GAACATCTCTCAAACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9280 | ATCCGAATCACGATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9281 | TTTATGCAGTGTGGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9282 | AAATGCCGTGCAGTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9283 | CACACTCAGCACGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9284 | AGGGAGTCACTCAGGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9285 | AGTGAGGTCTTGGGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9286 | ATTTCTGTCAGTTCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9287 | CATCCACAGAGGTAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9288 | GTGTGCGCACGGACAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9289 | ACATCAGAGGACGAAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9290 | CACACCTAGGATCGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9291 | AAGCCGCTCGCCCTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9292 | TCAGGATCAATGAATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9293 | ACATCAGGTCGAAAGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9294 | CATCGAAGTTCAGGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9295 | AGCTCCTAGACTGTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9296 | CGCTATCAGGGTCTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9297 | GGTATTGAGGCTAGAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9298 | AAACCTGTCAGTGTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9299 | GGTGTTATCAGCACAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9300 | GTCACAATCCACGCAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9301 | ACGCCAGAGATGCCTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9302 | CCGTGGACATGCCTAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9303 | CTGAAGTTCACATAGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9304 | AGGTCATTCCACGACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9305 | TGCGTGGGTGTCGCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9306 | TCGTAGATCCGCATCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9307 | GGACAGATCGAATCCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9308 | GAACATCGTACATGTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9309 | TGACTAGTCAACACTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9310 | TCTTCGGGTACCGTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9311 | CAAGAAACAAACCCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9312 | GAGTCCGGTTTGTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9313 | TTCCCAGCAAACGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9314 | AAAGATGCAAGAAAGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9315 | CAGTAACAGAACAATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9316 | TCAGCAAGTAGCTGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9317 | CTCATTATCATCGATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9318 | CTTACCGCACGCATCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9319 | AGGGAGTCAACGATGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9320 | TTCTTAGAGTGTTGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9321 | GCGCCAATCGTATCAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9322 | AGTGGGATCTTGCCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9323 | TTCTCCTTCCTAGTGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9324 | GACCTGGGTATAAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9325 | GATCTAGGTAGCTAAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9326 | CCTAGCTCAAGTCTAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9327 | TACCTATGTCTTTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9328 | CACAGGCCATCCGCGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9329 | ACAGCTAAGAGCCCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9330 | TTCCCAGGTCACTGGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9331 | TTAACTCCATTCGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9332 | GATGAGGGTCCAAGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9333 | AGGCCGTAGAAACCGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9334 | CCTATTAAGAGACGAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9335 | CCTCTGAGTTAAAGTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9336 | TAGCCGGTCTACTATC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9337 | AACGTTGCAGCTGGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9338 | TGAGCCGTCGCCTGTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9339 | GATTCAGAGGGTTCCC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9340 | CCTAAAGTCGGTTAAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9341 | TAGCCGGAGGCATGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9342 | GCTGCAGGTGCTCTTC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9343 | ACGTCAACACACCGCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9344 | CACAGTATCATCACCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9345 | AGAATAGCATAGAAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9346 | CCTTTCTGTCGAATCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9347 | GGGCATCTCTCTTGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9348 | ACGCCAGGTTACGTCA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9349 | GCTTGAATCGGGAGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9350 | CAGCATAAGATCACGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9351 | CTGAAACTCCCACTTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9352 | TCCACACGTCAGGACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9353 | CTTAGGACAATGAATG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9354 | ATTATCCAGCGTGTCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9355 | GCAAACTGTGGTCTCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9356 | CGAGCCAGTGTCAATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9357 | ACCAGTATCGTCTGCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9358 | GTATTCTGTCTGGAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9359 | CCCAATCGTGCCTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9360 | CGATGTATCGGACAAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9361 | CCTACCAAGAGTACCG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9362 | GCTTCCACAAATACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9363 | CCCATACTCACAATGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9364 | ATTCTACCATCTACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9365 | GATCGTACAGCTTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9366 | CTCGAAAAGTTTGCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9367 | GACGTTAGTCACAAGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9368 | TCAGATGGTTGAACTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9369 | ACGTCAACAGCATACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9370 | CGAGCCAAGCGCCTCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9371 | CTCGGGACACTACAGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9372 | TTTCCTCCATGGGAAC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9373 | CATATTCCATCGATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9374 | ACGCCAGGTCTCTCGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9375 | TACTTGTTCACCTTAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9376 | CGTCCATAGACAGAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9377 | CACCACTTCCCAAGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9378 | CCACTACAGCCCAATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9379 | TGTGGTACATCGATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9380 | TCTCTAACACGCATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9381 | GATGAAACACACATGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9382 | CCTTCCCAGGATGTAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9383 | TCGTAGACAGATTGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9384 | CTTTGCGCAAAGAATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9385 | CAACCAATCACATAGC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9386 | ACATACGGTGGTGTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9387 | AGGTCATTCCGCGTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9388 | TATCTCAAGCCCAGCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9389 | ACAGCCGAGCTAGGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9390 | CATCAAGGTTCCAACA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9391 | CCATGTCAGGAGTCTG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9392 | GAAATGACAGCCTGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9393 | CTCCTAGTCACTTCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9394 | GACTACAAGTATTGGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9395 | CTGTTTACAGTCACTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9396 | GAATAAGCACTGTCGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9397 | CAGCGACAGCCTATGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9398 | CAGCGACCAGCAGTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9399 | TGCTACCTCACATACG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9400 | TTATGCTGTCATGCAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9401 | GGATGTTCAATAACGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9402 | TGGGAAGTCTGCGTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9403 | TATGCCCTCTCGAGTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9404 | TTGGAACCAAATACAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9405 | TAAGTGCGTTGAGGTG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9406 | GTACTTTTCTATGTGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9407 | GAAATGATCGCGCCAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9408 | CCTCTGAGTTGCGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9409 | GGTGCGTAGGATATAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9410 | CGTTGGGAGCTGAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9411 | GACTGCGGTATCTGCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9412 | CTCATTAAGAGTACCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9413 | TGACAACTCGGCCGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9414 | TGCACCTCACAGGCCT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9415 | CTCGTCAGTCCCTACT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9416 | GTAGGCCAGTGTTAGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9417 | CCCAATCCACAGGAGT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9418 | GAATAAGGTCACCTAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9419 | CGGACTGGTTCGTGAT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9420 | CTCTGGTAGGTGCTTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9421 | GGAAAGCTCGAATGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9422 | CAGTCCTAGTGCCAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9423 | GCTTCCATCCGCGTTT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9424 | GACCAATGTAGCGCAA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9425 | ATAAGAGAGTGCGTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9426 | ACATACGCAGGACGTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9427 | GGCCGATCACGCATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9428 | CTCTACGCACTGTTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9429 | CGACCTTCATGAACCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9430 | TTCTACACAACGATGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9431 | GGACATTTCTCCCTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9432 | CGTCAGGAGGACATTA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9433 | TGAGCCGAGGGTATCG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9434 | CCTTACGAGGGATGGG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9435 | ACGATGTGTTACGGAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9436 | TGCTACCTCTCGTATT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9437 | TCATTTGAGCCAGTTT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9438 | CCTCAGTGTAGATTAG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9439 | TCATTTGCACTGTTAG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9440 | ATGTGTGAGATCACGG | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9441 | CTACGTCAGTGCAAGC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9442 | AAATGCCTCTCCCTGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9443 | CCGTACTGTTCGGCAC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9444 | CTACGTCCACCAGTTA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9445 | CATCGAACAGGCTGAA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9446 | CGAGCACGTCGCTTTC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9447 | ACATGGTAGTGCTGCC | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9448 | ATTATCCGTCAACATC | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9449 | AGAATAGGTCCGAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9450 | CAAGATCTCAACACGT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9451 | ACGCCGATCGAGAACG | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9452 | AAGGCAGAGGCAAAGA | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9453 | TACTTACAGCCCAATT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9454 | CAGAGAGAGGTCGGAT | ERX6700457 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN219 | nan | |
| 9455 | CAGCGACAGTCCTCCT | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9456 | ACTGTCCGTTCCATGA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9457 | TCCACACGTATCACCA | ERX6700458 | ERP132587 | testis | Elongated_spermatids | nan | nan | nan | CL:4030037 | late spermatid | perfect match | SN224 | nan | |
| 9458 | GTCTCGTGTTAGATGA | ERX6700457 | ERP132587 | testis | Leptotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN219 | nan | |
| 9459 | AAAGTAGCACATGACT | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9460 | CAACTAGGTTCTGGTA | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9461 | CTTAACTAGGTGACCA | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9462 | CGTTCTGCACCAACCG | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9463 | CAGGTGCTCGTCACGG | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9464 | TTCTACATCGTCCAGG | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9465 | CACAAACTCATACGGT | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9466 | TCTTCGGAGTAAGTAC | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9467 | TTCGAAGTCTGACCTC | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9468 | GTCTCGTAGGTGGGTT | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9469 | CCAATCCGTGCGATAG | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9470 | CAGGTGCAGCCACGTC | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9471 | TTTCCTCGTAGGCATG | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9472 | GGACATTGTGCTGTAT | ERX6700457 | ERP132587 | testis | none | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9473 | CACACTCGTTTACTCT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9474 | CTACACCGTACAGCAG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9475 | CCGTTCACAAGAGTCG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9476 | CAACCTCGTTACGCGC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9477 | CAGTAACTCGTATCAG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9478 | GTATCTTTCTGACCTC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9479 | AAGGCAGTCTGGTGTA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9480 | GAAACTCAGGCTAGCA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9481 | ACATACGGTGTGGTTT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9482 | CCATGTCGTAGCCTCG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9483 | TAGTTGGGTCAACATC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9484 | GATGCTACAAACGTGG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9485 | CATGACAGTCCAGTTA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9486 | AGATTGCGTCATACTG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9487 | AAACCTGCATCGGGTC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9488 | GACGTGCCAAAGTCAA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9489 | TTCCCAGTCACAACGT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9490 | TACTCATAGAGAGCTC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9491 | CCTAAAGCAGGTCTCG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9492 | CCTCTGAAGTTGAGAT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9493 | AAAGCAATCTTTCCTC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9494 | CGAATGTGTAATAGCA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9495 | AGTTGGTTCAGGTTCA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9496 | TATGCCCCATCTCCCA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9497 | TTTGTCAAGGAGTTGC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9498 | GTGCAGCGTTGGTTTG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9499 | CTGATAGCAGCTGTGC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9500 | GCTCTGTGTTATCACG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9501 | CTTAACTCAACACCCG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9502 | GAATAAGAGGGCATGT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9503 | TGGACGCCACACAGAG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9504 | GACGCGTTCGAACTGT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9505 | GCGCCAACACAACTGT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9506 | GTGTTAGAGTGGTCCC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9507 | CTGCCTACACAAGACG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9508 | GGACGTCTCATCGCTC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9509 | CTCTGGTAGCGATGAC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9510 | AGCATACTCTACGAGT | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9511 | CGCTATCTCATCACCC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9512 | GTCTTCGAGCTGCAAG | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9513 | TGAGGGATCCTATTCA | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9514 | TAGCCGGAGCTACCGC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9515 | ACTGCTCGTTCACGGC | ERX6700457 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN219 | nan | |
| 9516 | AGCTCCTGTGCCTGTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9517 | ACGGGCTGTTGAGTTC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9518 | AAACCTGGTCCAAGTT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9519 | CGAACATTCAGTTAGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9520 | TAAGAGAGTAGGACAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9521 | TACGGTACACATTTCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9522 | CGTTCTGCAGTATCTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9523 | ACGGAGACACGAGGTA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9524 | CATATGGTCCGATATG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9525 | CACTCCATCCAGTAGT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9526 | CTTTGCGTCAACGGCC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9527 | ACCGTAATCTTACCTA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9528 | CCCAATCGTCTCCCTA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9529 | CTCAGAACAAAGCAAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9530 | TATTACCGTCCTCTTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9531 | CTAGCCTAGACGCAAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9532 | TCGCGAGTCCTCTAGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9533 | CCACGGATCAACCAAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9534 | CAGCTGGGTTGGTTTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9535 | GGGAGATAGAATGTGT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9536 | CAGTAACTCACCAGGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9537 | GAGGTGAGTTTGTTGG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9538 | TGGCTGGAGATAGGAG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9539 | AGGCCGTAGGACAGCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9540 | GCAAACTAGTTACCCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9541 | AACTCAGCAATACGCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9542 | CGGGTCAAGAAACGAG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9543 | CTAGAGTGTACAAGTA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9544 | CTGATAGAGTCCGGTC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9545 | GGAAAGCGTTGCGCAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9546 | GCTGCGAAGGCACATG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9547 | CGATTGAGTGAAGGCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9548 | CACTCCACACATCTTT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9549 | CGTCTACCATCCTAGA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9550 | CTCGTCATCATGTAGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9551 | CTAGAGTCAGTTTACG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9552 | GGAAAGCTCTGACCTC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9553 | CAGCCGAAGGTCATCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9554 | AGCTCCTTCCTTGCCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9555 | GAAACTCAGAACTGTA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9556 | TGAGCCGCAGCTCGAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9557 | CCACTACCACGAAATA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9558 | GACTAACGTAAAGTCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9559 | CACAGTATCATCTGTT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9560 | CGACTTCTCGCCTGAG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9561 | TGACAACCAGATCTGT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9562 | CACACAATCACTCCTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9563 | CAAGATCTCGCTGATA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9564 | CACACCTCACGGCCAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9565 | GATCTAGGTCACCCAG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9566 | AGGGATGTCTGTACGA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9567 | TCTTTCCTCGTTGACA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9568 | TCAGATGCAGACAAGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9569 | CCGTACTAGCCACGCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9570 | CATCCACAGCTGCAAG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9571 | TCACAAGGTCGACTAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9572 | GATCGTAAGGTGTGGT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9573 | CAAGAAATCTGGCGTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9574 | ACATGGTCACTCAGGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9575 | CAGCTGGGTACGACCC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9576 | ACGGCCAAGTTATCGC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9577 | GGACAAGGTACCGTAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9578 | GTCACAAGTTCCATGA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9579 | ATAACGCCAGGTCTCG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9580 | CTAAGACGTGTGCCTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9581 | CCATTCGTCAAAGACA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9582 | GGACGTCTCTTATCTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9583 | GAACCTACAAGGACTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9584 | ACTGAACTCTTGAGAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9585 | CAGATCATCATGCAAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9586 | GATCGATCAAGTCATC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9587 | GATGAGGTCGCTTAGA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9588 | AGGCCACCAAGGGTCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9589 | CGATTGAGTGTTCGAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9590 | GACACGCAGGTAGCCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9591 | CGACCTTTCATCGGAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9592 | CACAGTACATATGCTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9593 | CGCTTCATCGATGAGG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9594 | CTGAAGTAGCTGAACG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9595 | ATCATCTAGAAGGTGA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9596 | AAGTCTGGTGACTACT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9597 | CGTCACTAGGGCTTCC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9598 | GGATGTTAGTCGTACT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9599 | TAAACCGAGAGCTGCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9600 | GGGCACTAGCATGGCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9601 | CCCTCCTTCTGTCTAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9602 | TCAGATGAGATGTTAG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9603 | CAGCGACCAGGCTGAA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9604 | GTCCTCACATCCGGGT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9605 | TGCCCTAAGCAATATG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9606 | GAACCTAAGGAGTCTG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9607 | TCGGGACGTCGCGTGT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9608 | GACGGCTAGGCCGAAT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9609 | CGGACTGCATTGTGCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9610 | GTCACGGTCAGGTTCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9611 | TCATTACGTTCCGTCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9612 | CAGGTGCCATGGATGG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9613 | TTAGTTCCAGGTTTCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9614 | AACTCCCCACGAAATA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9615 | ATTGGTGAGTCCCACG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9616 | CTTGGCTTCATATCGG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9617 | CGTTCTGGTGGCAAAC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9618 | GGGTCTGGTTTGGGCC | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9619 | CTACATTCAGGTCTCG | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9620 | CTCATTAGTCCATCCT | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9621 | TAGCCGGGTTCCTCCA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9622 | AGTTGGTAGTATCGAA | ERX6700458 | ERP132587 | testis | Other_somatic | nan | nan | nan | CL:0000255 | eukaryotic cell | other | SN224 | nan | |
| 9623 | GCATGTATCCGTTGTC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9624 | CCTAGCTAGACTTGAA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9625 | GCCAAATTCCTTTCGG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9626 | GTTCATTCAGCTATTG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9627 | TCGGGACAGAAGATTC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9628 | GTCAAGTCATCTCCCA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9629 | GTAGTCAGTATGAAAC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9630 | GGGACCTTCTCGGACG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9631 | CTAACTTTCTACCAGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9632 | CCTTTCTTCCAATGGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9633 | CTTGGCTTCGCATGGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9634 | TCTGGAAAGAACAACT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9635 | TCGCGTTGTCTCATCC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9636 | AGGGTGAGTTGACGTT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9637 | GACTAACAGTGTCTCA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9638 | TGAAAGAGTAGAGGAA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9639 | AACCATGTCTGCGACG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9640 | TCACAAGGTGGCGAAT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9641 | CGAACATCACGAAAGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9642 | GAAATGAAGGCGCTCT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9643 | GAGGTGACATCGTCGG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9644 | TTCTACAAGCGTTCCG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9645 | GCGCAGTTCGCCTGAG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9646 | TGAGCATAGGAATGGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9647 | GGGAGATCAAGCTGGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9648 | AGGCCGTCACTACAGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9649 | TGCGGGTGTTGAACTC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9650 | CCAGCGAAGGATGGAA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9651 | TGCGGGTGTAGGCATG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9652 | GTCTCGTTCTTCTGGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9653 | AAACCTGCAATGAATG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9654 | GTGCAGCAGATCGGGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9655 | AACTGGTGTCCTCTTG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9656 | TTGCCGTTCACTTATC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9657 | TACGGTAAGGGAGTAA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9658 | CTGTGCTTCAACACGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9659 | CTGTGCTGTAGCGATG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9660 | GTGCTTCGTGTTGGGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9661 | AACTGGTGTTCAGTAC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9662 | AGATTGCCATGAAGTA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9663 | TCAATCTAGTGTCTCA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9664 | CGCGGTAAGGCTATCT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9665 | TCACGAAAGGTGCTTT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9666 | GGGAGATGTTCTGAAC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9667 | CCGTACTTCTTGAGGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9668 | AAGACCTAGTGTACGG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9669 | AAAGTAGGTTCAGCGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9670 | GCGCGATGTACGAAAT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9671 | AGGTCATAGACAGAGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9672 | TCTATTGAGCACGCCT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9673 | CGACCTTCAACGATCT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9674 | CAGCTAAGTGTCAATC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9675 | ACTATCTAGCTCCCAG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9676 | GCTGCAGCAAGCGAGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9677 | GGGAGATGTTTGCATG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9678 | CTAGTGATCAACACCA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9679 | CATCGGGCACGGTAAG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9680 | GGGCACTAGTAGGTGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9681 | ACTGCTCAGGTGGGTT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9682 | CAGATCACATCACGTA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9683 | TATGCCCCACACCGCA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9684 | TGGCCAGCAGATCGGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9685 | GACGCGTAGTAGCGGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9686 | GTAGTCATCTGTACGA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9687 | TTGACTTTCCAGTAGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9688 | ACGCCAGCAAAGCGGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9689 | GTTCATTAGTAGATGT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9690 | TCGCGAGCAAAGCAAT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9691 | CCTAGCTAGGCGTACA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9692 | CCGGTAGGTCAAACTC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9693 | GTAGGCCCACTGTGTA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9694 | TGACTTTTCTACCTGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9695 | GGACAAGCAGGAATGC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9696 | GCTCTGTCACTGCCAG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9697 | CTACATTGTGACTACT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9698 | GTCCTCAGTACAGTTC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9699 | TATGCCCTCTGTTGAG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9700 | TGCCAAACAACACCTA | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9701 | CGATCGGTCGTTTAGG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9702 | GTTACAGCAGCCTTTC | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9703 | TATGCCCTCGGCGCAT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9704 | AGGGTGATCACATACG | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9705 | GAATAAGTCGAATGCT | ERX6700457 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN219 | nan | |
| 9706 | CAGCATAAGTGGGTTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9707 | GACGCGTCATCCGCGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9708 | ATTGGACTCTTGAGGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9709 | ACCGTAATCCGTAGGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9710 | CATATTCCATGGTCAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9711 | GTGAAGGTCTCTAAGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9712 | GACTACAGTCAGATAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9713 | GAGCAGAAGCTAACAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9714 | TTCCCAGTCGTTGACA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9715 | CACATTTGTCGGCTCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9716 | ACGGGTCGTGCCTTGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9717 | CATCAGATCGGAATCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9718 | TGGACGCCAAACGCGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9719 | CCTCTGACATCCTTGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9720 | TCTGGAACACCCATGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9721 | AAACCTGGTCTGCCAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9722 | GACGTGCGTGAGCGAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9723 | TGACAACTCTCTTATG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9724 | TTAACTCGTTACAGAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9725 | GACGTGCGTCATTAGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9726 | AAGGCAGAGATAGGAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9727 | TTTACTGCAGGTGCCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9728 | CGACTTCCAAGCCCAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9729 | AGCTTGATCGAATGCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9730 | CGCTGGACATCGATGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9731 | ACGGGCTTCGCATGAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9732 | TATCTCAGTCTGCGGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9733 | TGCCAAATCAGCAACT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9734 | GTGAAGGAGTATCTCG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9735 | TGGCTGGCATTCTCAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9736 | GTTAAGCTCAACACGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9737 | ATAACGCTCGCTGATA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9738 | GAACCTATCATGTCTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9739 | AGTCTTTGTACTTAGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9740 | TTAACTCTCACCGTAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9741 | CTAATGGCAGTCAGAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9742 | GGACAGAGTCGGCATC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9743 | GCTTCCACATTCTCAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9744 | AACCATGGTTCGTGAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9745 | GTGTTAGAGATGCCAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9746 | AGTCTTTCACAACTGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9747 | CCCATACCAAAGCGGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9748 | ACCGTAAGTTCAGTAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9749 | AGGGTGAGTAAACACA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9750 | TAAGTGCCAAGCGCTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9751 | AGCTCTCAGAACTGTA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9752 | AAAGTAGTCGTACGGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9753 | GGGTCTGAGGCTAGCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9754 | AGCTTGAGTAAACCTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9755 | ACATCAGCACCATCCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9756 | CATCCACGTGTTAAGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9757 | TGACAACAGGCTCATT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9758 | CTCATTATCATAACCG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9759 | CCTATTAGTCAACATC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9760 | ATCATGGTCATATCGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9761 | ACTGCTCTCTTCATGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9762 | TACCTATAGCTCTCGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9763 | CTACCCAGTGGTAACG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9764 | AGCTCCTAGCCAGTTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9765 | TTGGCAATCATCTGTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9766 | CGGGTCAAGCCGATTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9767 | AAAGTAGGTTTGACAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9768 | GTGAAGGCACGCTTTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9769 | CTAACTTAGAGCTATA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9770 | CTAAGACAGAATGTGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9771 | ATTATCCCACTCTGTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9772 | CGAGCACGTCCTCCAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9773 | GCTCTGTTCTCATTCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9774 | CAGCAGCTCTCGGACG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9775 | GTGCGGTAGTCCATAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9776 | GACTGCGGTTCAGACT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9777 | GTATCTTCATCCTAGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9778 | CATGCCTGTTCGTGAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9779 | CGAATGTTCGATAGAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9780 | CAGCCGAGTAGGACAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9781 | TGCACCTTCTCATTCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9782 | TCAGATGAGGATGTAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9783 | AAGTCTGGTGCGATAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9784 | GTAGGCCTCATGTGGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9785 | CCTTCGAGTCCAGTGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9786 | GCTGCGATCAAGATCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9787 | CGTAGCGTCACATAGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9788 | CGCCAAGCAAGCGATG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9789 | CGCCAAGTCGGATGGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9790 | ACCAGTATCCTGCTTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9791 | AGAGCTTGTACCAGTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9792 | CTGCTGTAGAAGGTTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9793 | ACTTACTTCGCTTAGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9794 | AGCTCCTCATGGTCTA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9795 | TGGGAAGAGTGGGTTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9796 | TCTGAGAAGAGGGCTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9797 | TTAACTCAGTTTGCGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9798 | GGCGACTAGGGTTCCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9799 | GGAACTTCATTGGCGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9800 | TCTCTAACATGCATGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9801 | AAGGCAGCAATCTGCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9802 | CGTGTCTCATTGTGCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9803 | GTTACAGAGCCACGTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9804 | AGGCCGTCACCAGATT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9805 | TTAGGACGTCTTCGTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9806 | GCTTCCAAGATGTCGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9807 | GATCAGTTCGAACGGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9808 | GCGACCAAGATGTGGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9809 | AGGTCATTCTGGTGTA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9810 | GCACTCTAGCCACGTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9811 | ACCGTAAAGTAGCCGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9812 | TGGCTGGAGAGACTAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9813 | GGTGCGTCAAGGACTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9814 | GAAATGATCTCAAACG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9815 | TGGCCAGAGGTGATTA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9816 | TCTGGAAAGTGCAAGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9817 | CCTCTGAGTGTGAATA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9818 | CCTATTAAGGTAGCTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9819 | CATCGAAAGGCCCTTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9820 | GCGCGATAGACGCACA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9821 | CGGACTGAGTTTGCGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9822 | CAGCCGATCAGTCAGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9823 | TTCGGTCGTACAGACG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9824 | ACTGCTCTCATGCTCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9825 | AGTTGGTCACCCTATC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9826 | CCTTACGAGAGTTGGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9827 | AGATCTGCATGGATGG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9828 | TCGCGAGGTCGGCACT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9829 | CCAGCGAGTCTGGTCG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9830 | TAGTTGGAGTCGTACT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9831 | AAAGCAAGTAGGCTGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9832 | CTCTGGTAGTTTAGGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9833 | ATCGAGTTCCGCGCAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9834 | CATGCCTGTGATGCCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9835 | AGTGGGACAGCTGGCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9836 | AGGGTGAAGGGCTCTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9837 | GCGCGATAGAAACGCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9838 | GCTGCTTCACACCGCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9839 | TTGCCGTGTTTGACAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9840 | CGACCTTAGCGATCCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9841 | CCAATCCAGCTAGTCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9842 | TGCGGGTTCGACAGCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9843 | GATCGATAGCTACCTA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9844 | TGGTTAGAGCTTATCG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9845 | GTGAAGGAGTACGTTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9846 | GTCTTCGAGTTTCCTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9847 | TTCGAAGCAGGGAGAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9848 | ATCACGACAGCAGTTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9849 | AGCTTGAAGGTACTCT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9850 | AACTGGTTCGTATCAG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9851 | CTCGGGATCCAGATCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9852 | TACTTGTCAGCTGTAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9853 | TGAGCATTCGACAGCC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9854 | ATTGGACCAGTTAACC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9855 | ATTGGTGTCACCAGGC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9856 | CGATCGGGTGTTAAGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9857 | TGCTGCTAGTCGAGTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9858 | ATTGGTGTCTGAAAGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9859 | GCGCAGTAGCTGATAA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9860 | CTCCTAGCATTAGCCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9861 | TGCTACCTCCTAGTGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9862 | CGTCAGGAGTCTCCTC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9863 | CGGACTGCACGGCCAT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9864 | TACGGATCAGGAACGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9865 | GCGCAACTCTCTTATG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9866 | GCGCCAAGTGGAAAGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9867 | CTTAGGATCTCGATGA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9868 | CCATTCGGTCGAGTTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9869 | CCGTGGACATTACCTT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9870 | TTGCGTCGTCTGATTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9871 | GTGGGTCGTCGGCTCA | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9872 | CTGCTGTGTTTGTGTG | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9873 | CGCGGTACAGACAGGT | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9874 | GCTTGAAGTAGGACAC | ERX6700458 | ERP132587 | testis | Sertoli | nan | nan | nan | CL:0000216 | Sertoli cell | perfect match | SN224 | nan | |
| 9875 | ATCCACCTCCTTTCGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9876 | CCTTACGTCTTCGGTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9877 | TACTTGTTCTGCCAGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9878 | CCACGGACATAGACTC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9879 | CATTCGCAGATGCCAG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9880 | TCTATTGGTGTCCTCT | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9881 | AAGACCTCATGTTGAC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9882 | CATGCCTTCAAGATCC | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9883 | CAAGTTGAGCTGATAA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9884 | GCGAGAAAGTTACGGG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9885 | ACTGTCCCAGTATCTG | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan | |
| 9886 | GAATGAAAGTGTCTCA | ERX6700458 | ERP132587 | testis | Zygotene_Spermatocytes | nan | nan | nan | CL:0000656 | primary spermatocyte | missing child term | SN224 | nan |
experiment annotations¶
In [ ]:
experiment = pd.read_csv(experiment_path_from_script, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERP132587 | snRNA-seq of bonobo (Pan paniscus) adult testis | Single-nucleus RNA sequencing (snRNA-seq) was ... | ENA | 2 | 10X Genomics V2, 10X Genomics | 3'end | PRJEB48245 | 36544022 | https://www.nature.com/articles/s41586-022-055... | 10.1038/s41586-022-05547-7 | E-MTAB-11067[E-MTAB] |
experiment and protocol details¶
In [ ]:
library_to_add = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
# this will give you the number of rows in the complete library file
# this should be the number of annotated libraries
ann_lib = len(library_to_add.index)
len(library_to_add.index)
Out[ ]:
2
In [ ]:
# partial or total
experiment.loc[:,'experimentStatus'] = 'total'
# scRNA-seq, Sn-scRNA-seq for both we put: 'Sn-scRNA-seq, scRNA-seq'
experiment.loc[:,'RNAseqTags'] = 'Sn-scRNA-seq'
# see above cell, also can add as free text
experiment.loc[:,'numberOfAnnotatedLibraries'] = ann_lib
# these variables should already exist from above but if not can just add as free text
experiment.loc[:,'protocol'] = my_protocol
experiment.loc[:,'protocolType'] = my_protocolType
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERP132587 | snRNA-seq of bonobo (Pan paniscus) adult testis | Single-nucleus RNA sequencing (snRNA-seq) was ... | ENA | total | Sn-scRNA-seq | 2 | 10X Genomics V2 | 3'end | PRJEB48245 | 36544022 | https://www.nature.com/articles/s41586-022-055... | 10.1038/s41586-022-05547-7 | E-MTAB-11067[E-MTAB] |
paper and xrefs¶
In [ ]:
#experiment.loc[:,'GSE'] = ''
#experiment.loc[:,'Bioproject'] = ''
experiment.loc[:,'PMID'] = '36544022'
experiment.loc[:,'reference_url'] = 'https://www.nature.com/articles/s41586-022-05547-7'
experiment.loc[:,'DOI'] = '10.1038/s41586-022-05547-7'
experiment.loc[:,'xrefs'] = 'E-MTAB-11067[ArrayExpress]'
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERP132587 | snRNA-seq of bonobo (Pan paniscus) adult testis | Single-nucleus RNA sequencing (snRNA-seq) was ... | ENA | total | Sn-scRNA-seq | 2 | 10X Genomics V2 | 3'end | PRJEB48245 | 36544022 | https://www.nature.com/articles/s41586-022-055... | 10.1038/s41586-022-05547-7 | E-MTAB-11067[ArrayExpress] |
comments¶
In [ ]:
experiment.loc[:,'comment'] = 'bonobo single cell experiment from PMID 36544022'
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | ERP132587 | snRNA-seq of bonobo (Pan paniscus) adult testis | Single-nucleus RNA sequencing (snRNA-seq) was ... | ENA | total | Sn-scRNA-seq | 2 | 10X Genomics V2 | 3'end | PRJEB48245 | 36544022 | https://www.nature.com/articles/s41586-022-055... | 10.1038/s41586-022-05547-7 | E-MTAB-11067[ArrayExpress] | bonobo single cell experiment from PMID 36544022 |
save complete file¶
In [ ]:
experiment.to_csv(experiment_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
QA time¶
In [ ]:
library_to_add = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
experiment_to_add = pd.read_csv(experiment_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
to add things here¶
- add check that experimentDescription in experiment file isn't blank or NA
- add check that all anat, celltype, stage columns are filled out
- celltype can be blank if 10X experiment but should have a flag for that
- add check that all annotation status columns are filled out
check columns match¶
In [ ]:
# pull from git and pull in library/experiment file
! git pull
git_library = pd.read_csv(git_library_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
git_experiment = pd.read_csv(git_experiment_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
# library file
if set(library_to_add.columns) == set(git_library.columns):
print('The columns in the library file match')
else:
print('The columns in the library file DO NOT MATCH')
# experiment file
if set(experiment_to_add.columns) == set(git_experiment.columns):
print('The columns in the experiment file match')
else:
print('The columns in the experiment file DO NOT MATCH')
# maybe to make this something more like "COLUMNS GOOD - LIBRARY" and "COLUMNS BAD - EXPERIMENT"
Already up to date. The columns in the library file match The columns in the experiment file match
view files¶
In [ ]:
library_git_plus_new = pd.concat([git_library, library_to_add], ignore_index = True, sort = False)
old_length = git_library.shape[0]
start = old_length - 2
end = old_length + 5
view_lib = library_git_plus_new.iloc[start:end]
view_lib
Out[ ]:
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 59069 | SRX23367374 | SRP485481 | Illumina NovaSeq 6000 | SRS20229690 | UBERON:0002114 | duodenum | CfamDv:0000007 | postnatal stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | Duodenum | NA | perfect match | other | NA | Beagle | Wt | 9615 | scRNA-seq | 10X Genomics V3 | 3'end | h_2 | SAMN39578686 | PMID:38933260, Healthy dogs were selected from... | ANN | 2025-01-20 | ||||||||
| 59070 | SRX23367373 | SRP485481 | Illumina NovaSeq 6000 | SRS20229689 | UBERON:0002114 | duodenum | CfamDv:0000007 | postnatal stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | Duodenum | NA | perfect match | other | NA | Beagle | Wt | 9615 | scRNA-seq | 10X Genomics V3 | 3'end | h_1 | SAMN39578687 | PMID:38933260, Healthy dogs were selected from... | ANN | 2025-01-20 | ||||||||
| 59071 | ERX6700458 | ERP132587 | NextSeq 550 | ERS8071686 | UBERON:0000473 | testis | PpanDv:0000025 | 15-year-old stage | testis | 15 years | perfect match | perfect match | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN224 | SAMEA10418842 | SAC | 2025-01-28 | ||||||||||||
| 59072 | ERX6700457 | ERP132587 | NextSeq 550 | ERS8071685 | UBERON:0000473 | testis | PpanDv:0000040 | aged stage | testis | 36 years | perfect match | missing child term | M | 9597 | Sn-scRNA-seq | 10X Genomics V2 | 3'end | SN219 | SAMEA10418841 | SAC | 2025-01-28 |
In [ ]:
experiment_git_plus_new = pd.concat([git_experiment, experiment_to_add], ignore_index = True, sort = False)
experiment_git_plus_new.tail(n=3)
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 106 | SRP467631 | A high-resolution transcriptomic and spatial a... | The mammalian brain consists of millions to bi... | SRA | total | scRNA-seq | 781 | 10X Genomics V2, 10X Genomics V3 | 3'end | GSE246717 | PRJNA1030397 | 38092916 | https://pmc.ncbi.nlm.nih.gov/articles/PMC10719... | 10.1038/s41586-023-06812-z | Allen Brain Cell Atlas - mouse whole brain | |
| 107 | SRP485481 | Single-Cell RNA Sequencing Investigation of th... | We used single-cell RNA sequencing to characte... | SRA | partial | scRNA-seq | 3 | 10X Genomics V3 | 3'end | GSE254005 | PRJNA1068098 | 38933260 | https://pmc.ncbi.nlm.nih.gov/articles/PMC11199... | 10.3389/fimmu.2024.1397590 | only normal libraries have been reported in ou... | |
| 108 | ERP132587 | snRNA-seq of bonobo (Pan paniscus) adult testis | Single-nucleus RNA sequencing (snRNA-seq) was ... | ENA | total | Sn-scRNA-seq | 2 | 10X Genomics V2 | 3'end | PRJEB48245 | 36544022 | https://www.nature.com/articles/s41586-022-055... | 10.1038/s41586-022-05547-7 | E-MTAB-11067[ArrayExpress] | bonobo single cell experiment from PMID 36544022 |
In [ ]:
# 10X only
barcode_file_for_git = pd.read_csv(barcode_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
barcode_file_for_git.head(5)
Out[ ]:
| barcode | cluster | library | experiment | tissue | cell_type | anatId_a_posteriori | anatName_a_posteriori | anat_a_posteriori_annotationStatus | cellTypeId | cellTypeName | cellTypeAnnotationStatus | name_Library | comments | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | TGCGTGGAGTGGGCTA | ERX6700458 | ERP132587 | testis | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | SN224 | |||||
| 1 | TGTATTCCAACACCCG | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | SN219 | |||||
| 2 | TCAATCTTCACGACTA | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | SN219 | |||||
| 3 | CACCAGGCATCGATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | SN219 | |||||
| 4 | TAAGAGAAGCCTATGT | ERX6700457 | ERP132587 | testis | Undifferentiated_Spermatogonia | CL:0000020 | spermatogonium | missing child term | SN219 |
add annotations to git¶
In [ ]:
! git pull
Already up to date.
In [ ]:
library_git_plus_new.to_csv(git_library_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_library_path)
experiment_git_plus_new.to_csv(git_experiment_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_experiment_path)
In [ ]:
# 10X only
barcode_file_for_git.to_csv(git_barcode_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_barcode_path)
In [ ]:
! git status
On branch develop Your branch is up to date with 'origin/develop'. Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: ../../../scRNA_Seq/scRNASeqExperiment.tsv modified: ../../../scRNA_Seq/scRNASeqLibrary_merged.tsv Untracked files: (use "git add <file>..." to include in what will be committed) ./ ../SRP356459/barcode_ERP132587.csv ../../../scRNA_Seq/scRNASeq_barcode_ERP132587.tsv no changes added to commit (use "git add" and/or "git commit -a")
In [ ]:
# 10X (barcode file)
! git add $git_experiment_path $git_library_path $git_barcode_path
In [ ]:
! git status
On branch develop Your branch is up to date with 'origin/develop'. Changes to be committed: (use "git restore --staged <file>..." to unstage) modified: ../../../scRNA_Seq/scRNASeqExperiment.tsv modified: ../../../scRNA_Seq/scRNASeqLibrary_merged.tsv new file: ../../../scRNA_Seq/scRNASeq_barcode_ERP132587.tsv Untracked files: (use "git add <file>..." to include in what will be committed) ./ ../SRP356459/barcode_ERP132587.csv
In [ ]:
! git commit -m $commit_message_exp
[develop 8ba35c4] adding annotated scRNA experiment ERP132587 3 files changed, 9895 insertions(+), 4 deletions(-) create mode 100644 scRNA_Seq/scRNASeq_barcode_ERP132587.tsv
In [ ]:
! git push
Enumerating objects: 10, done. Counting objects: 100% (10/10), done. Delta compression using up to 12 threads Compressing objects: 100% (6/6), done. Writing objects: 100% (6/6), 78.33 KiB | 5.59 MiB/s, done. Total 6 (delta 4), reused 0 (delta 0), pack-reused 0 remote: remote: To create a merge request for develop, visit: remote: https://gitlab.sib.swiss/Bgee/expression-annotations/-/merge_requests/new?merge_request%5Bsource_branch%5D=develop remote: To https://gitlab.sib.swiss/Bgee/expression-annotations.git dbfc973..8ba35c4 develop -> develop
add annotation folder and script to git¶
first - run annotation summary cells, save ipynb, export to html
In [ ]:
! git status
In [ ]:
! git add $path_to_output
In [ ]:
! git commit -m $commit_message_py
In [ ]:
! git push